Skip to content

Instantly share code, notes, and snippets.

@rugor
Last active January 19, 2016 21:28
Show Gist options
  • Save rugor/5417979 to your computer and use it in GitHub Desktop.
Save rugor/5417979 to your computer and use it in GitHub Desktop.
PHP: Wordpress functions.php specify number of words in post title #rugor #st
// Maximum 10 Words in Post Title !!!
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