現在のページがブログページかどうかを確認してください
9 回答
- 投票
-
- 2014-08-03
「ブログページ」とは、閲覧設定で投稿ページとして設定された静的ページを意味する場合、次のようにして確認できます:
if ( is_front_page() && is_home() ) { // Default homepage } elseif ( is_front_page() ) { // static homepage } elseif ( is_home() ) { // blog page } else { //everyting else }
is_home()
とis_front_page()
を使用する場合は、 バグを回避し、すべてのユーザー構成をテストするための正しい順序.(出典: 条件付きタグ-ブログページ )
または単に:
if ( !is_front_page() && is_home() ) { // blog page }
またはもっと簡単に(私は思う):
if ( is_home() ) { // blog page }
If by 'blog page' you meant a static page set as posts page in the Reading Settings, then you could check it by doing this:
if ( is_front_page() && is_home() ) { // Default homepage } elseif ( is_front_page() ) { // static homepage } elseif ( is_home() ) { // blog page } else { //everyting else }
When you use
is_home()
andis_front_page()
, you have to use them in the right order to avoid bugs and to test every user configuration.(Source: Conditional Tags - The Blog Page)
Or simply:
if ( !is_front_page() && is_home() ) { // blog page }
Or more simply (I suppose):
if ( is_home() ) { // blog page }
-
`if(!is_front_page()&&is_home())`を使用する1つの使用例は、少なくとも私の意見では、**デフォルトのホームページ**と**ブログのレイアウトスタイルが異なるテーマを配布する場合です.ページ**.One use case to use `if ( !is_front_page() && is_home() )`, at least in my opinion, is if you are distributing a theme that has different layout style for the **default homepage** and the **blog page**.
- 0
- 2014-08-03
- Giraldi
-
ブログのアーカイブまたはページが選択されているかどうかに関係なく、is_front_page()がtrueを返すことがわかりました.確認が必要です.https://codex.wordpress.org/Function_Reference/is_front_pageI'm finding is_front_page() will return true whether or not the blog archive or a page is selected. Need verification. https://codex.wordpress.org/Function_Reference/is_front_page
- 0
- 2017-05-28
- atwellpub
-
- 2014-04-18
テーマのfunctions.phpファイルでは次のものを使用できます.
function is_blog () { return ( is_archive() || is_author() || is_category() || is_home() || is_single() || is_tag()) && 'post' == get_post_type(); }
次に、これをチェックしているファイルに入れます:
<?php if (is_blog()) { echo 'You are on a blog page'; } ?>
Functions.phpファイルのフックを使用して上記をフックし、すべてのページに表示することができます.
You can use the following in your themes functions.php file:
function is_blog () { return ( is_archive() || is_author() || is_category() || is_home() || is_single() || is_tag()) && 'post' == get_post_type(); }
And then put this in the file you are checking:
<?php if (is_blog()) { echo 'You are on a blog page'; } ?>
You can use Hooks in your functions.php file to hook the above, to make that appear on every page.
-
これは、ブログページにアクセスしているかどうかを確認したいが、必ずしもブログページにアクセスしているかどうかを確認したい場合に最適な回答です(ブログのホームページのように).そのための@Giraldiの答えを参照してください.This is a great answer if you want to determine if you're on _a_ blog page, but not neccessarily _the_ blog page (as in the blog home page). See @Giraldi's answer for that.
- 1
- 2016-04-17
- Tim Malone
-
is_page()が存在するため、is_blog()が存在すると誤って想定しました.[公式のWordPress条件付きタグインデックス](https://codex.wordpress.org/Conditional_Tags#Conditional_Tags_Index)を参照することは私には思い浮かびませんでした.Widget Logicプラグインを使用して、このソリューションを効果的に適用することができました.I incorrectly assumed is_blog() exists because is_page() exists. It didn't occur to me to consult the [official WordPress Conditional Tags Index](https://codex.wordpress.org/Conditional_Tags#Conditional_Tags_Index). I was able to effectively apply this solution using the Widget Logic plugin.
- 0
- 2019-04-14
- Clarus Dignus
-
- 2016-04-17
「ブログページ」とは、リーディングで投稿ページとして設定された静的ページを意味する場合:
global $wp_query; if ( isset( $wp_query ) && (bool) $wp_query->is_posts_page ) { //static blog page }
PS.このソリューションは、template_redirect アクション
でも機能しますIf by 'blog page' you meant a static page set as posts page in the Reading:
global $wp_query; if ( isset( $wp_query ) && (bool) $wp_query->is_posts_page ) { //static blog page }
PS. This solution also works on template_redirect action
-
こんにちはrepinsa、WPSEへようこそ:)あなたの答えを追加してくれてありがとう.コードに構文エラーがあるため( `global $ wp_query`の後にセミコロンがないため)、質問に完全に答えていないため、少し却下されました.これは関数ですが、OPはヘッダーファイルでこれを解決する方法を尋ねました.そのため、何をどこに置くかについてもう少し説明が必要な場合があります.繰り返しになりますが、ようこそ、ここにお越しいただきありがとうございます.Hi repinsa, welcome to WPSE :) Thanks for adding your answer. It's been voted down a bit, probably because it has a syntax error in the code (it's missing a semicolon after the `global $wp_query`) but also because it doesn't fully answer the question. It's a function, but the OP asked how to work this out in his header file - so it might need a little more explanation about what to put where. Again, welcome, glad to have you here!
- 0
- 2016-04-17
- Tim Malone
-
それが実際にはここでの唯一の良い答えであり、もっと多くの賛成票があったはずです.That's actually the only good answer here, should have had more upvotes.
- 3
- 2017-12-23
- Lacho Tomov
-
- 2018-05-16
ブログのインデックスページを取得するために、私はそれを見つけました
if ( !is_front_page() && is_home() ) { // blog page }
機能していません.get_option( 'page_for_posts')関数を使用してブログページpost_idを特定する必要がありました.答えは
if ( !is_front_page() && is_home() ){ if ( empty ( $post_id) ) { global $post; $post_id = get_option( 'page_for_posts' ); } //blog page }
To get the blog index page, I found that
if ( !is_front_page() && is_home() ) { // blog page }
is not working for me, I had to use the get_option('page_for_posts') function to identify the Blog Page post_id, my answer is
if ( !is_front_page() && is_home() ){ if ( empty ( $post_id) ) { global $post; $post_id = get_option( 'page_for_posts' ); } //blog page }
-
- 2013-07-19
使用できます.
<?php if ( is_single() ) { ?> Do stuff here <?php } ?>
それが単一のブログ投稿であるかどうかを確認します.または...
<?php if ( is_home() ) { ?> Do stuff here <?php } ?>
ブログのホームページかどうかを確認する
You can use..
<?php if ( is_single() ) { ?> Do stuff here <?php } ?>
to check if it's a single blog post. Or...
<?php if ( is_home() ) { ?> Do stuff here <?php } ?>
to check if it's the blog homepage
-
ブログページを変更した場合は機能しませんDoesn't work if you've changed the blog page
- 2
- 2014-10-09
- cdmckay
-
これは、OPに対する正しい答えを提供しません.これは、「ブログページ」ではなく、単一の投稿にアクセスしていることを示します.This doesn't provide a correct answer to the OP. This indicates you are on a single post, not "the blog page".
- 0
- 2017-12-27
- butlerblog
-
- 2016-10-04
注意が必要な方法があります.
ブログページのスラッグが
blog
の場合、このコードを使用できます.global $wp_query; if($wp_query->query['pagename']=='blog'){ // this is blog page }
There is a tricky method.
Suppose if your blog page slug is
blog
, you can use this code.global $wp_query; if($wp_query->query['pagename']=='blog'){ // this is blog page }
-
- 2016-12-17
ホームページ
if(is_home() && is_front_page() || is_front_page()): // static or default hompage ... endif;
ブログ
if(is_home() && !is_front_page()): // blog ... endif;
HOMEPAGE
if(is_home() && is_front_page() || is_front_page()): // static or default hompage ... endif;
BLOG
if(is_home() && !is_front_page()): // blog ... endif;
-
- 2017-09-16
同じ状況で、ページスラッグを使用する次の手法を使用したのは非常に単純だと思います.
if( is_page('blog') ) { echo "This is your blog page"; }
ただし、最近のブログ投稿を表示するホームページを選択しておらず、ブログやニュースなどのブログ用に特定のページを設定していることを確認してください.そのページスラッグを使用すれば問題ありません.
I guess its very simple I was in a same situation and I used the following technique which is to use the page slug.
if( is_page('blog') ) { echo "This is your blog page"; }
But make sure you've not selected homepage to display recent blog posts and you have set a specific page for blogs like blog or news etc, just use that page slug and you'd be fine.
-
- 2015-09-27
私はこのように使用します
// Get body classes as array $body_classes = get_body_class(); // Check if "blog" class exists in the array if(in_array("blog", $body_classes)) { // Do stuff }
I use this way
// Get body classes as array $body_classes = get_body_class(); // Check if "blog" class exists in the array if(in_array("blog", $body_classes)) { // Do stuff }
WordPressは初めてです.現在のページがヘッダーファイルのコード内のブログページであるかどうかを確認する方法を探しています.
確認しましたが、方法が見つかりません.助けてください、Pls.