Wednesday, 22 January 2014

How To Check If Post Has Gallery

In WordPress there is default gallery, i guess most of us don't use because we have awesome plugin called nggallery. But in order to check if a post has gallery or not,we have to add this in wordpress loop.


if (strpos($post->post_content,'[gallery') === false){
  echo 'no gallery';
}else{
  echo 'has gallery';
}

No comments:

Post a Comment