Determine se a página é a página de posts
5 respostas
- votos
-
- 2011-04-14
is_home()
verifica apágina "Posts Page",apesar donome defunção umpouco confuso.is_home()
checks for the "Posts Page", despite the somewhat confusing function name.-
Obrigado,penseiem verificartodoseles,maseu acho quenão ...thanks, i thought i checked them all, but i guess not...
- 0
- 2011-04-14
- mike
-
E quanto ao `$ WP_Query->is_posts_page`?What about `$wp_query->is_posts_page`?
- 3
- 2013-05-15
- Weston Ruter
-
@WestonRutertem a resposta corretapara apergunta.@WestonRuter has the correct answer to the question.
- 0
- 2017-01-19
- The J
-
- 2015-09-13
WordPress vem com 7tipos depágina demodeloprimário,quepodem ser determinados destamaneira
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 diz a você,que vocêtem apágina doblog.
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
"Posts Page" égeralmente um arquivo de:
- posts de uma categoria
- posts de umatag
- posts de uma data (ano,mês ...)
- posts do Arquivo Principal
Cada um delespode ser verificadopor uma dasmuitastags condicionais como
.is_category() is_tag() is_date() is_archive()
Emuitomais.Para obter umamelhor compreensãopara o códice http://codex.wordpresspress.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
primeiro verifique osblogs relacionados como autor,tag,pós-tipo
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 ; }
Agora verifiquee retorne algo que você desejater
function check_post_type(){ $postType; if (is_blog()) { $postType = 'I am post'; } else { $postType = 'I am page'; }; return $postType; }
Use como chefe
<?php echo check_post_type();?>
Graças a wesbos
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
caso a . Não hánecessidade de determinar dentro do arquivo demodeloprincipal (index.php)porque é omodelopadrãoparaele [1] .
caseb . Para determiná-lo dentro de ummodelo depágina (ex:page.php),basta verificar assim:
get_option( 'page_for_posts' ) == get_the_ID()
Detalhes
Eu literalmentefui cavando o código de origem [2] sópara ser capaz de saber como o WordPressfaz a verificação do valor. Acontece,eleestá usando ainstrução
get_option( 'page_for_posts' )
para saber o ID POST do valor selecionado dapágina posts .Então sim,paraestepropósito,não hátalfunção oficial de verificação semelhante ao
is_front_page()
.Contanto que você saiba o ID dapágina que você selecionou,então vocêpode usá-lopara oprocesso de verificação.
Referências
- .
-
wordpress codex,desenvolvimentotemático, codex.wordpress.org/theme_development
-
código de origem de configurações > configurações de leitura ,github.com/wordpress/.../wp-admin/options-ling.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
Napágina Configurações de Leitura Vocêpode definir uma "primeirapágina"e uma "página depostagens".Vocêpode verificar se apágina atual
is_front_page();
Existe umafunção semelhantepara a "página depostagens".Eunotei que
is_page();
nãofuncionaparaestapáginaespecial.obrigado