Warning: Undefined array key "seo" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 6

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 6

Warning: Undefined array key "css" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 7

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 7

Warning: Undefined array key "jssrc" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 8

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 8

Warning: Undefined array key "js" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 9

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 9

Warning: Undefined variable $tn_js in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/header-single.php on line 59
カスタム投稿タイプの条件分岐で注意したいところ – どっといこ
WordPress  
  カスタム投稿タイプの条件分岐で注意したいところ
2018
18
Mar

カスタム投稿タイプの条件分岐で注意したいところ

最終更新日: 2018年10月11日

カスタム投稿タイプ通常の投稿タイプは違いがありますし、標準ではカスタム投稿タイプに備わっていない機能、例えばフィードにカスタム投稿ページの情報は含まれないなどがありますので注意したいです。

カスタム投稿タイプの条件分岐で注意したいところ

 


if( is_archive() ){

   //ほとんどのアーカイブに使用できる。

   if( is_date() ){
      //使用できる
   }

   if( is_tax( $taxonomy ) ){
      //使用できる
   }

}


if( is_post_type_archive( $post_type ) ){

   //使用できるタグと使用でいないタグがある

   if( is_date() ){
      //日付関連のタグは使用できる
   }

   if( is_tax($taxonomy) ){
      //このタグは使用しても意図を反映しない。独立して使用する。
   }

}

 

top


Warning: Undefined array key "jssrc" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/footer-single.php on line 30

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/footer-single.php on line 30

Warning: Undefined array key "js" in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/footer-single.php on line 31

Warning: Trying to access array offset on value of type null in /home/dotequal/pub/ja-ja.jp/wp-content/themes/ja-ja/footer-single.php on line 31