Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

Définir le nombre minimum de mots sur les publications WordPress

<?php
function minWord($content){
global $post;
$num = 900; //set this to the minimum number of words
$content = $post->post_content;
if (str_word_count($content) < $num) wp_die( __('Error: your post is below the minimum word count.') ); } add_action('publish_post', 'minWord');
?>
Source by wpformation.com #
 
PREVIOUS NEXT
Tagged: #le #nombre #minimum #de #mots #sur #les #publications #WordPress
ADD COMMENT
Topic
Name
4+2 =