Answers for "Définir un nombre maximum de mots sur les titres des publications WordPress"

PHP
0

Définir un nombre maximum de mots sur les titres des publications WordPress

<?php
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');
?>
Posted by: Guest on September-29-2021

Code answers related to "Définir un nombre maximum de mots sur les titres des publications WordPress"

Browse Popular Code Answers by Language