Skip to content

Instantly share code, notes, and snippets.

@jasonglisson
Last active September 14, 2017 12:33
Show Gist options
  • Save jasonglisson/4e397e822233d7678d81 to your computer and use it in GitHub Desktop.
Save jasonglisson/4e397e822233d7678d81 to your computer and use it in GitHub Desktop.
Wordpress: Set Maximum Post Title Length
function maxWord($title){
global $post; $title = $post->post_title;
if (str_word_count($title) >= 10 ) //set this to the maximum number of words
wp_die( __('Error: your post title is over the maximum word count.') );
}
add_action('publish_post', 'maxWord');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment