Verifique se a página atual é a página do blog
9 respostas
- votos
-
- 2014-08-03
Sepor 'blog ' você quis dizer um páginaestática conjunto comopágina posts nas configurações de leitura ,então vocêpoderia verificarissofazendoisso:
if ( is_front_page() && is_home() ) { // Default homepage } elseif ( is_front_page() ) { // static homepage } elseif ( is_home() ) { // blog page } else { //everyting else }
.
Quando você usa
is_home()
eis_front_page()
,vocêtem que usá-losem opedido correto paraevitarbugse testar cada configuração do usuário.(Fonte: tags condicionais - apágina doblog )
ou simplesmente:
if ( !is_front_page() && is_home() ) { // blog page }
oumais simplesmente (suponho):
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 }
-
Um caso de usopara usar `if (! Is_front_page () &&is_home ())`,pelomenosnaminha opinião,é se vocêestiver distribuindo umtema quetenhaestilo de layout diferentepara apáginainicial **padrão **e oblog **página**.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
-
Estou achandois_front_page () retornará verdadeiro ounão o arquivoblog ou umapágina selecionada.Precisa de verificação.https://codex.wordpress.org/function_reference/is_front_page.I'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
Vocêpode usar o seguinteem seustemasfunções.phpfile:
function is_blog () { return ( is_archive() || is_author() || is_category() || is_home() || is_single() || is_tag()) && 'post' == get_post_type(); }
e,em seguida,coloqueistono arquivo que vocêestámarcando:
<?php if (is_blog()) { echo 'You are on a blog page'; } ?>
Vocêpode usarganchosem seu arquivofunctions.phppara ligar o acima,parafazer com que apareçaem todas aspáginas.
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.
-
Esta é uma ótima resposta se você quiser determinar se vocêestánapágina deblog _a_,masnãoneccariamente _the_blog (comonapáginainicial doblog).Veja a resposta @ Giraldiporisso.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
-
Euincorretamente assumiis_blog ()existeporqueis_page ()existe.Nãome ocorreupara consultar o [Oficial WordPress Conditional Tags Index] (https://codex.wordpress.org/conditional_tags#conditional_tags_index).Eu consegui aplicarefetivamenteesta solução usando oplugin lógica do widget.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
Sepor 'blogpágina',você quis dizer umapáginaestática comopágina depostagensna leitura:
global $wp_query; if ( isset( $wp_query ) && (bool) $wp_query->is_posts_page ) { //static blog page }
ps.Esta soluçãotambémfuncionaem template_redirect ação
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
-
Oi repinta,bem-vindo ao WPSE :) Obrigadopor adicionar sua resposta.Tem sido votadoem umpouco,provavelmenteporquetem umerro de sintaxeno código (estáfaltando umpontoe vírgula após o `Global $ WP_Query`),mastambémporquenão respondetotalmente apergunta.É umafunção,mas o OPperguntou como resolverissoem seu arquivo de cabeçalho -entãopodeprecisar de umpoucomais deexplicação sobre o que colocar onde.Mais uma vez,bem-vindo,felizporter você aqui!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
-
Essa é realmente a únicaboa resposta aqui,deveriatermais ovistas.That's actually the only good answer here, should have had more upvotes.
- 3
- 2017-12-23
- Lacho Tomov
-
- 2018-05-16
Para obter apágina blog ,descobri que
if ( !is_front_page() && is_home() ) { // blog page }
Nãoestáfuncionandoparamim,tive que usar afunção Get_Option ('Page_For_Posts')paraidentificar apágina doblogpost_id,minha resposta é
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
Vocêpode usar ..
<?php if ( is_single() ) { ?> Do stuff here <?php } ?>
Para verificar se é uma únicapostagemnoblog.Ou ...
<?php if ( is_home() ) { ?> Do stuff here <?php } ?>
Para verificar se é apáginainicial doblog
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
-
Nãofunciona se você alterou apágina doblogDoesn't work if you've changed the blog page
- 2
- 2014-10-09
- cdmckay
-
Issonãofornece uma resposta correta ao OP.Issoindica que vocêestáem um únicopost,não "apágina doblog".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
Há ummétodo complicado.
Suponha se a suapágina doblog SLUG é blog
blog
,vocêpode usareste código.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
homepage
if(is_home() && is_front_page() || is_front_page()): // static or default hompage ... endif;
blog
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
Eu acho que émuito simpleseuestavaem umamesma situaçãoe usei a seguintetécnica que é usar apágina Slug.
if( is_page('blog') ) { echo "This is your blog page"; }
mas certifique-se denão selecionar apáginainicialparaexibirpostagens deblog recentese você definiu umapáginaespecíficaparablogs comoblog ounotíciasetc,basta usaressapágina sluge vocêestariabem.
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
Eu uso dessamaneira
// 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 }
Eu sounovopara o WordPress.Euestouprocurando umamaneira de verificar se apágina atual é apágina doblogno código do arquivo de cabeçalho.
Eu verifiquei,masnão consigoencontrar umamaneira.Me ajude,pls.