您可以这样做:
add_action(\'publish_post\', \'wpse_107434_title_max_char\');
function wpse_107434_title_max_char() {
global $post;
$title = $post->post_title;
if (strlen($title) >= 100 )
wp_die( "the title must be 100 characters at most" );
}
您可以替换
strlen()
具有
str_word_count()
如果您想设置字数限制。
EDIT: 好的,您添加了新的详细信息,似乎可以添加一些jQuery来执行相同的操作(strlen)