jasonglisson
5/29/2014 - 1:31 AM

Wordpress: Set Maximum Post Title Length

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');