Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created January 5, 2019 08:49
Show Gist options
  • Select an option

  • Save Tsunamijaan/1058377c28ec79f2f68fa6eb5edc9652 to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/1058377c28ec79f2f68fa6eb5edc9652 to your computer and use it in GitHub Desktop.
Set maximum post title length
function JebamaxWord($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', 'JebamaxWord');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment