Created
June 23, 2015 04:16
-
-
Save kellenmace/fe4a589aa166d97728b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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