La fonction de galerie de WordPress vous permet d’ajouter plusieurs galeries attachées en tant qu’ID dans un seul shortcode. Vous pouvez rechercher le shortcode de la galerie dans votre article ou votre page WordPress.
Instructions : Ajoutez le code suivant au fichier single.php de votre thème WordPress.
if ( get_post_gallery() ){ echo 'has gallery'; } else{ echo 'has no gallery'; }
Après avoir vérifié si la galerie existe, vous pouvez vouloir l’afficher. Remplacez simplement echo 'has gallery' ;
dans le code ci-dessus par la ligne suivante.
echo get_post_gallery();
Vous pouvez également apprécier l ‘ajout d’une limite au nombre d’images dans une galerie.
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>';