リファレンス– tag –
-
WordPressの条件タグ
is_taxonomy()
特定のタクソノミーが register_taxonomy()を介している場合です。 When a particular taxonomy is registered via register_taxonomy(). -
投稿タグ
get_children
get_children()は、親記事によって可能な、添付ファイル、リビジョン、またはサブページを取得します。get_posts()と同様な動作をします。 get_children() retrieves attachments, revisions, or sub-Pages, possibly by post parent. It works similarly ... -
テーマに関するその他のタグ
dynamic_sidebar
この関数は、サイドバーのマークアップで出力された、ソート内でコールバックされた有効な各ウィジェットを呼び出します。1つ以上のサイドバーがある場合、出力したいサイドバーの名前あるいは数字の関数を取得する必要があります。この関数は、成功の場... -
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で... -
WordPressの条件タグ
is_year()
年アーカイブを表示している場合です。 When a yearly archive is being displayed. -
パーマリンクタグ
post_permalink
カスタム投稿タイプのパーマリンクを返します。 Returns the permalink for a post with a custom post type. post_permalinkのテンプレートタグ使用方法 [php] [/php] ソースファイル post_permalink()は、wp-includes/link-template.php内に位置していま...