条件タグ– tag –
-
その他のタグ
wp_is_mobile
この条件タグは、ユーザーがモバイルデバイスを使用して訪問しているかをチェックします。これはboolean関数で、TRUEまたはFALSEのいずれかを返します。 This Conditional Tag checks if the user is visiting using a mobile device. This is a boolean f... -
条件タグ
is_attachment
この条件タグは、添付ファイルが表示されている場合にチェックします。 添付ファイルは、投稿エディターのアップロード機能を介してアップロードされた画像やその他のファイルのことです。添付ファイルは、独自の"ページ"またはテンプレートに表示すること... -
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...