Skip to content

Instantly share code, notes, and snippets.

@kellenmace
Created June 23, 2015 04:16
Show Gist options
  • Save kellenmace/fe4a589aa166d97728b2 to your computer and use it in GitHub Desktop.
Save kellenmace/fe4a589aa166d97728b2 to your computer and use it in GitHub Desktop.
// The list of post types that we want to require post titles for
$post_types = array( 'post', 'page', 'event', 'project' );
// If the current post is not one of the chosen post types, exit this function
if ( in_array( $post->post_type, $post_types ) ) {
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment