ページが投稿ページであるかどうかを確認します
5 回答
- 投票
-
- 2011-04-14
is_home()
は、関数名がやや紛らわしいにもかかわらず、「投稿ページ」をチェックします.is_home()
checks for the "Posts Page", despite the somewhat confusing function name.-
おかげで、私はそれらをすべてチェックしたと思いましたが、私はそうではないと思います...thanks, i thought i checked them all, but i guess not...
- 0
- 2011-04-14
- mike
-
`$ wp_query->is_posts_page`はどうですか?What about `$wp_query->is_posts_page`?
- 3
- 2013-05-15
- Weston Ruter
-
@WestonRuterは質問に対する正しい答えを持っています.@WestonRuter has the correct answer to the question.
- 0
- 2017-01-19
- The J
-
- 2015-09-13
Wordpressには、この方法で決定できる7つの主要なテンプレートページタイプが付属しています
if ( is_main_query() ) { // Error if ( is_404() ) { ; } // Front page if ( is_front_page() ) { ; } // Archive if ( is_archive() ) { ; } // Comments popup if ( is_comments_popup() ) { ; } // Search if ( is_search() ) { ; } // Singular if ( is_singular() ) { ; } // Home - the blog page if ( is_home() ) { ; } }
is_homeは、ブログページがあることを通知します.
Wordpress comes with 7 primary template page types, which can be determined on this way
if ( is_main_query() ) { // Error if ( is_404() ) { ; } // Front page if ( is_front_page() ) { ; } // Archive if ( is_archive() ) { ; } // Comments popup if ( is_comments_popup() ) { ; } // Search if ( is_search() ) { ; } // Singular if ( is_singular() ) { ; } // Home - the blog page if ( is_home() ) { ; } }
is_home tells to you, that you have the blog page.
-
- 2011-04-14
「投稿ページ」は通常、次のアーカイブです.
- カテゴリの投稿
- タグの投稿
- 日付の投稿(年、月...)
- メインアーカイブの投稿
これらのそれぞれは、次のような多くの条件付きタグの1つによってチェックできます.
is_category() is_tag() is_date() is_archive()
そして、もっとたくさん.理解を深めるには、コーデックス http://codex.wordpress.org/Conditional_Tags にアクセスしてください."Posts page" is usually an archive of:
- posts of a category
- posts of a tag
- posts of a date ( year, month...)
- posts of main archive
Each one of these can be checked by a one of the many conditional tags like
is_category() is_tag() is_date() is_archive()
And so many more. To get a better understanding head over to the codex http://codex.wordpress.org/Conditional_Tags -
- 2018-01-10
まず、作成者、タグ、投稿の種類など、ブログに関連するものを確認します
function is_blog () { global $post; $posttype = get_post_type($post ); return ( ((is_archive()) || (is_author()) || (is_category()) || (is_home()) || (is_single()) || (is_tag())) && ( $posttype == 'post') ) ? true : false ; }
必要なものを確認して返送してください
function check_post_type(){ $postType; if (is_blog()) { $postType = 'I am post'; } else { $postType = 'I am page'; }; return $postType; }
ボスのように使う
に感謝します<?php echo check_post_type();?>
First check the blogs related things like author, tag, post type
function is_blog () { global $post; $posttype = get_post_type($post ); return ( ((is_archive()) || (is_author()) || (is_category()) || (is_home()) || (is_single()) || (is_tag())) && ( $posttype == 'post') ) ? true : false ; }
Now check and return something which you want to have
function check_post_type(){ $postType; if (is_blog()) { $postType = 'I am post'; } else { $postType = 'I am page'; }; return $postType; }
Use it like Boss
<?php echo check_post_type();?>
Thanks to Wes Bos
-
- 2019-03-10
TL; DR
ケースA . [1] のデフォルトテンプレートであるため、メインテンプレートファイル(index.php)内で決定する必要はありません.
ケースB .ページテンプレート(例:page.php)内でそれを確認するには、次のように確認します.
get_option( 'page_for_posts' ) == get_the_ID()
詳細 h2>
私は文字通り、ワードプレスが値のチェックをどのように行うかを知るために、そのソースコード [2] を掘り下げました.結局のところ、ステートメント
get_option( 'page_for_posts' )
を使用して、投稿ページの選択された値の投稿IDを認識しています.そうですね、この目的のために、
is_front_page()
に似た公式のチェッカー関数はありません.選択したページのIDがわかっている限り、それをチェックプロセスに使用できます.
参考資料
-
WordPressコーデックス、テーマ開発、 codex.wordpress.org/Theme_Development
-
設定のソースコード› 読み取り設定、github.com/WordPress/.../wp-admin/options-reading.php
TL;DR
Case A. There is no need to determine it inside the main template file (index.php) because it is the default template for it[1].
Case B. To determine it inside a page template (ex: page.php), simply check it like so:
get_option( 'page_for_posts' ) == get_the_ID()
Details
I literally went digging the source-code[2] of it just to be able to know how wordpress does the checking of the value. It turns out, it is using the statement
get_option( 'page_for_posts' )
to know the post ID of the selected value of the Posts page.So yeah, for this purpose, there is no such official checker function that is similar to
is_front_page()
.As long as you know the ID of the page that you've selected then you can use it for the checking process.
References
WordPress Codex, Theme Development, codex.wordpress.org/Theme_Development
Source-code of Settings › Reading Settings, github.com/WordPress/.../wp-admin/options-reading.php
閲覧設定ページでは、「フロントページ」と「投稿ページ」を設定できます.現在のページが
であるかどうかを確認できますis_front_page();
「投稿ページ」にも同様の機能はありますか?
is_page();
がこの特別なページでは機能しないことに気づきました.ありがとう