O recurso de galeria do WordPress permite que você adicione várias galerias anexadas como IDs em um único shortcode. Você pode procurar o shortcode da galeria em seu post ou página do WordPress.
Instruções: Adicione o seguinte código ao arquivo single.php de seu tema do WordPress.
if ( get_post_gallery() ){ echo 'has gallery'; } else{ echo 'has no gallery'; }
Depois de verificar se a galeria existe, você pode querer mostrar a galeria. Basta substituir echo 'has gallery';
no código acima pela seguinte linha.
echo get_post_gallery();
Você também pode gostar de adicionar um limite ao número de imagens em uma galeria.
i think is better…
if ( get_post_gallery() ){
echo ‘has gallery’;
}else{
echo ‘has no gallery’;
}
reference: https://codex.wordpress.org/Function_Reference/get_post_gallery
Hi Just a Farax
I agree, this snippet was posted before wp 3.6 when this was not an option. Ill update the snippet to reflect these changes thanks for the heads up.
THANK YOU!!!!! Saved my life.
<?php if (strpos($post->post_content,'[gallery’) === false){ ?>
no gallery
<? } else { ?>
has gallery
<?php } ?>
How would you change this to go from php to html to php
What you have above should work fine the other option would be to do the following.
echo '<span class="className">html</span>';