次のいずれかをtrueで返す時です:is_single(), is_page(), is_attachment()
When any of the following return true: is_single(), is_page() or is_attachment().
目次
is_singular(‘book’)
投稿タイプのbookを投稿で表示する時にtrueです。バージョン 3.0で導入されました。
True when viewing a post of the post type book. Introduced with Version 3.0.
is_singular(array( ‘newspaper’, ‘book’ ))
投稿タイプnewspaperかbookの投稿を表示する時trueです。バージョン 3.0で導入されました。
True when viewing a post of the post type newspaper or book. Introduced with Version 3.0.
コメント