テンプレートタグ wp_list_categories
WordPress(ワードプレス)の2.1系からテンプレートタグのlist_catsとwp_list_catsが非推奨らしいので、wp_list_categoriesへ変更しました。
カテゴリーメニューで使用していた以前のテンプレートタグ
<?php list_cats(0, '', 'name', 'asc', '', 1, 0, 1, 1, 1, 1, 0,'','','','',''); ?>
推奨されているwp_list_categoriesへ変更
<?php wp_list_categories('title_li='); ?>
テンプレートタグ wp_list_categoriesで参考にしたサイト
Template Tags/wp list categories « WordPress Codex
(上記のリンク先は、英文のサイトです)
[Wordpress Document] wp_list_categories (Wings-Winds)
(上記のリンク先は、日本語のサイトです)
ひかげstyleのテーマでlist_catsのテンプレートタグを使っていたデザインと同じにするために、wp_list_categoriesへtitle_li= を書くことで以前のデザインと同じになりました。
wp_list_categoriesについて
<?php wp_list_categories(''); ?>
<?php wp_list_categories('1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 & 13'); ?>
1. show_option_all
2. orderby
3. order
4. style
5. show_count
6. hide_empty
7. use_desc_for_title
8. child_of
9. feed
10. feed_image
11. exclude
12. hierarchical
13. title_li
関連記事
- WordPressでページの表示順序を制御するプラグイン
- WordPressでカテゴリーの並び順を制御するプラグイン
- WordPressで記事の並び順を制御するプラグイン
- テンプレートタグ wp_list_categories
各種プラグインの配布、提供、制作される方々に感謝です。
コメントを残す