WordPressの条件タグ– category –
WordPressのテンプレートタグ、条件タグのリファレンスです。
-
WordPressの条件タグ
comments_open
コメントがWordPressのループ内で処理された現在の投稿を許可する場合です。 When comments are allowed for the current Post being processed in the WordPress Loop. -
WordPressの条件タグ
has_tag()
現在の投稿タグの場合です。ループ内で使用しなければなりません。注:has_tagは、バージョン2.6から追加されました。 When the current post has a tag. Must be used inside The Loop. Note: has_tag was added at Version 2.6. has_tag('mild') 現在の... -
WordPressの条件タグ
is_tax()
全てのタクソノミーアーカイブページが表示されている場合です。 When any Taxonomy archive page is being displayed. is_tax('mild') 'mild'スラッグのタクソノミーのアーカイブページが表示されている場合です。 When the archive page for taxonomy wi... -
WordPressの条件タグ
is_taxonomy()
特定のタクソノミーが register_taxonomy()を介している場合です。 When a particular taxonomy is registered via register_taxonomy(). -
WordPressの条件タグ
pings_open
ピングがWordPressのループ内で処理された現在の投稿を許可する場合です。 When pings are allowed for the current Post being processed in the WordPress Loop. -
WordPressの条件タグ
has_excerpt()
現在の投稿に抜粋がある場合です。 When the current post has an excerpt has_excerpt('42') 投稿42(ID)に抜粋がある場合です。 When the post 42 (ID) has an excerpt. [php] -
WordPressの条件タグ
in_the_loop()
"ループ内"にあるかどうかを確認します。プラグイン作者の役立ち、この条件はループ内にある時にtrueとして返します。 Check to see if you are "inside the loop". Useful for plugin authors, this conditional returns as true when you are inside the... -
WordPressの条件タグ
is_active_sidebar()
指定されたサイドバーがアクティブ(使用中)であるかどうかを確認します。サイドバー(名前、id、ナンバーによて識別された)が使用された場合trueを返し、それ以外の関数はfalseを返します。この条件機能は、バージョン2.8から利用可能になりました。 Ch... -
WordPressの条件タグ
is_home()
メインブログのージが表示されている場合です。これは、サイトコンテンツのブログの時間を基づいて表示しているページです。もしフロントページ(下記参照)の静的ページを設定している場合は、管理画面>設定>表示設定内の”フロントページの表示”として... -
WordPressの条件タグ
is_singular()
次のいずれかを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で...