[wordpress] – テーマ制作用メモ – 走り書き

Filed under wordpress

解らない事だらけです。
Wordpressサイト構築スタイルブック片手にがんばってます。

メモ1

<?php the_date(Ynj); ?>

だと、同じ日に投稿すると古い記事の方に日付が出ない。
なので

<?php the_time(Ynj); ?>

にする。

メモ2
カテゴリーにMyCategoryOrderを使う場合は(ウィジェットで使わない場合)

<?php wp_list_cats('orderby=order&style=list&hide_empty=1&title_li='); ?>

そしてカテゴリに投稿した記事の件数を入れたい場合はoptioncount=tureを挿入

<?php wp_list_cats('optioncount=ture&orderby=order&style=list&hide_empty=1&title_li='); ?>

Post a Comment

Your email is never published nor shared.