Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created December 28, 2015 02:28
Show Gist options
  • Select an option

  • Save nathaningram/f9b381d05fad79e23703 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/f9b381d05fad79e23703 to your computer and use it in GitHub Desktop.
// Limit Post Title Size
function maxTitleLength($title) {
global $post;
$title = $post->post_title;
if (str_word_count($title) >= 10)
wp_die( __('Error: your post title is over the maximum word count.'));
}
add_action('publish_post','maxTitleLength');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment