Skip to content

Instantly share code, notes, and snippets.

@rsharrer
Created September 26, 2013 13:45
Show Gist options
  • Select an option

  • Save rsharrer/6714426 to your computer and use it in GitHub Desktop.

Select an option

Save rsharrer/6714426 to your computer and use it in GitHub Desktop.
Set Maximum Post Title Length
//set post title length
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