Home > WordPress > ウィジェットを利用したカテゴリーの順番を入れ替える

ウィジェットを利用したカテゴリーの順番を入れ替える

wp-includes/widgets.php の 623 行目
デフォルトでは下記のようになっている

$cat_args = "orderby=name&show_count={$c}&hierarchical={$h}";

これは名前で昇順ソートしている。
これをIDで降順にソートするには

$cat_args = "orderby=ID&order=desc&show_count={$c}&hierarchical={$h}";

のようにするとよい。
[orderby=ID&order=desc]の部分だ。

Comments:0

Comment Form
Remember personal info

Trackbacks:0

Trackback URL for this entry
http://www.wiz.gr.jp/wordpress/11/trackback
Listed below are links to weblogs that reference
ウィジェットを利用したカテゴリーの順番を入れ替える from WIZ-WORDPRESS│EC-CUBE-LABO

Home > WordPress > ウィジェットを利用したカテゴリーの順番を入れ替える

Return to page top