Skip to content

Instantly share code, notes, and snippets.

@ms-studio
Created September 3, 2012 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ms-studio/3608471 to your computer and use it in GitHub Desktop.
Save ms-studio/3608471 to your computer and use it in GitHub Desktop.
Provide link only if post has some content
if($post->post_content != "") {
// the post HAS some content ...
?>
<a href="<?php the_permalink();?>"><?php the_title();?></a>
<?php
} else {
// the post is EMPTY ...
the_title();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment