Déterminez si la page est la page des messages
5 réponses
- votes
-
- 2011-04-14
is_home()
vérifie la "Page demessages",malgré lenom de lafonction quelquepeu déroutant.is_home()
checks for the "Posts Page", despite the somewhat confusing function name.-
merci,je pensais les avoirtous vérifiés,maisje suppose quenon ...thanks, i thought i checked them all, but i guess not...
- 0
- 2011-04-14
- mike
-
Qu'enest-il de `$ wp_query->is_posts_page`?What about `$wp_query->is_posts_page`?
- 3
- 2013-05-15
- Weston Ruter
-
@WestonRuter a labonne réponse à la question.@WestonRuter has the correct answer to the question.
- 0
- 2017-01-19
- The J
-
- 2015-09-13
Wordpressest livré avec 7types demodèles depageprincipaux,quipeuvent être déterminés de cettemanière
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 vous dit que vous avez lapage dublog.
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
La "page demessages"estgénéralement une archive de:
- messages d'une catégorie
- messages d'untag
- messages d'une date (année,mois ...)
- messages de l'archiveprincipale
Chacun de ces élémentspeut être vérifiépar l'une desnombreusesbalises conditionnellestelles que
is_category() is_tag() is_date() is_archive()
Etbien plusencore.Pourmieux comprendre,allez au codex 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
Commencezpar vérifier les éléments liés auxblogstels que l'auteur,labalise,letype depublication
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 ; }
Maintenant,vérifiezet renvoyez quelque chose que vous voulez avoir
function check_post_type(){ $postType; if (is_blog()) { $postType = 'I am post'; } else { $postType = 'I am page'; }; return $postType; }
Utilisez-le comme Boss
<?php echo check_post_type();?>
Merci à Wes Bos
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
Cas A . Iln'estpasnécessaire de le déterminer dans lefichier demodèleprincipal (index.php) car c'est lemodèlepar défautpour celui-ci [1] .
Cas B . Pour le déterminer dans unmodèle depage (ex:page.php),cochez-le simplement comme ceci:
get_option( 'page_for_posts' ) == get_the_ID()
Détails
J'ai littéralementfouillé le code source [2] de celui-cijustepourpouvoir savoir comment wordpress vérifie la valeur. Il s'avère qu'il utilise l'instruction
get_option( 'page_for_posts' )
pour connaître l'ID depublication de la valeur sélectionnée de la page Messages .Donc oui,dans cebut,iln'y apas defonction de vérification officielle similaire à
is_front_page()
.Tant que vous connaissez l'ID de lapage que vous avez sélectionnée,vouspouvez l'utiliserpour leprocessus de vérification.
Références
-
Codex WordPress,développement dethèmes, codex.wordpress.org/Theme_Development
-
Code source des Paramètres › Paramètres de lecture ,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
Sur lapage Paramètres de lecture ,vouspouvez définir une "Page d'accueil"et une "Page demessages".Vouspouvez vérifier si lapage actuelle
is_front_page();
Existe-t-il unefonction similairepour la "Page des articles".J'ai remarqué que
is_page();
ne fonctionnepaspour cettepage spéciale.Merci