Created
December 28, 2015 02:28
-
-
Save nathaningram/f9b381d05fad79e23703 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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