Skip to content

Instantly share code, notes, and snippets.

@kellenmace
Created March 8, 2016 13:00
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 kellenmace/0b19507aa21757e6efbe to your computer and use it in GitHub Desktop.
Save kellenmace/0b19507aa21757e6efbe to your computer and use it in GitHub Desktop.
<?php
// 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