今までの自分さようなら。
プラグインで出来ちゃうみたい。今日知った。今までの苦労は何?
WP-dTreeってプラグインです。
日本語化もLovelogさんがされてます。
wp-dtree-30.3.5日本語版配布 | Lovelog+*
使用時のタグは以下
archives表示
[sourcecode language=”php”]
<ul>
<?php
if (function_exists(‘wp_dtree_get_archives’)){
wp_dtree_get_archives();
}else{
wp_get_archives(‘type=monthly’);
}
?>
</ul>
[/sourcecode]
categories表示
[sourcecode language=”php”]
<ul>
<?php
if (function_exists(‘wp_dtree_get_categories’)){
wp_dtree_get_categories();
}else{
wp_list_categories(‘show_count=1’);
}
?>
</ul>
[/sourcecode]
pages表示
[sourcecode language=”php”]
<ul>
<?php
if (function_exists(‘wp_dtree_get_pages’)){
wp_dtree_get_pages();
}else{
wp_list_pages();
}
?>
</ul>
[/sourcecode]
- Facebook GraphAPI v2.9でいいね・シェア数をPHPで取得して表示 - 2017年9月7日
- phpstormのFilewatcherでautoprefixerを使う方法 - 2017年1月19日
- Custom Field Templateを使用してのプレビューを実装 - 2016年1月14日
- WordPress:WooCommerceを使ってみて分かったこと - 2013年7月5日
- 誰得なプラグイン Ultimate Google Analytics改をひっそりと公開します - 2013年6月4日
- プラグイン『WooCommerce Fields for Japan』を公開しました - 2013年4月21日
- 公式 WordPress.orgプラグインディレクトリでのプラグイン公開のススメ - 2013年4月17日
- WordPress:WooCommerceを日本仕様へと日本語化 - 2013年4月15日
- webクリエイター パソコンを買う。 - 2013年3月16日
- WordPress:『続きを読む』read moreをpタグで囲む - 2013年3月5日
0 comments found
Comments for: wordpress:サイドバーの項目をツリー表示