Skip to content

Instantly share code, notes, and snippets.

@fernandofuly
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save fernandofuly/7e321d253179e36f4a81 to your computer and use it in GitHub Desktop.

Select an option

Save fernandofuly/7e321d253179e36f4a81 to your computer and use it in GitHub Desktop.
Detect If the "optional excerpt" is empty
<?php
if( $post->post_excerpt ) {
the_excerpt();
} else {
the_title();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment