harumemo

メモ書きです。

2015-10-21から1日間の記事一覧

ページ毎に異なるウィジェットを表示する事ができるWordPressプラグインDisplay Widgets

www.mono-lab.net

WordPress、カスタム投稿タイプのカスタムフィールドでソートする。

$dt = new DateTime();$dt->setTimeZone(new DateTimeZone('Asia/Tokyo'));$current_date = $dt->format('Y-m-d');$myquery = new WP_Query();$args = array( 'post_type' => 'event', 'orderby' => 'meta_value_num', /* ここで「meta_key」で並べ替えるこ…

PHP、現在の日付の取得方法

$dt = new DateTime();$dt->setTimeZone(new DateTimeZone('Asia/Tokyo'));$current_time = $dt->format('Y-m-d H:i:s');echo "now:".date("Y.m.d",strtotime($current_time))."\n";

wordpress、カテゴリ最上位のチェックボックスを無効化する

function my_print_footer_scripts() {echo '<script type="text/javascript"> //<![CDATA[ jQuery(document).ready(function($){ $("div.postbox-container ul#categorychecklist > li > label > input[type=checkbox]").each(function(){ $(this).attr("onclick","return false;"); }); })</script>…

wordpressのカスタム分類とカスタム投稿タイプに関するメモ

□カスタム分類 $labels = array( "name" => "イベントカテゴリ)", ※管理画面の上部に<H2>タグで表示されるタイトル。 "label" => "tx-events", "menu_name" => "イベントカテゴリ", ※左のナビゲーションメニューに表示される文字列。); $args = array( "labels"</h2>…