WordPress– category –
-
WordPress
タームを取得する【get_termsとget_the_termsの違い】
タームを取得するときもいつも調べちゃうよねw 【get_terms】 get_termsで何ができる? 指定されたタクソノミーに含まれるタームをすべて取得するのが、get_terms <?php get_terms($taxonomies, $args ); ?> $taxonomies 必須 タームを取得する... -
WordPress
記事の日付を表示する方法
なんだかんだいつも検索しちゃうのでまとめておく。。。 【記事の日付を表示する方法】 <?php echo get_the_date($format,$post_id); ?> the_date($format,$post_id);は同じ日付を繰り返し出力できないため、get_the_date($format,$post_id);を使う... -
WordPress
functions.phpが動いているか確認する方法
functions.phpが動いていないんじゃないの!?って気になるときありますよね。 cssファイルやjsファイルを読み込みがうまくできない カスタム投稿の設定が効いていない サムネイルの表示がうまくいかない などfunctions.phpに設定したのに効いていないなっ...
1