Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Comment créer automatiquement une méta description à partir de votre contenu dans WordPress

<?php
function create_meta_desc() {
    global $post;
if (!is_single()) { return; }
     $meta = strip_tags($post->post_content);
    $meta = strip_shortcodes($post->post_content);
    $meta = str_replace(array("
", "
", "	"), ' ', $meta);
    $meta = substr($meta, 0, 125); 
    echo "<meta name='description' content='$meta' />";
}
add_action('wp_head', 'create_meta_desc');
?>
Source by wpformation.com #
 
PREVIOUS NEXT
Tagged: #Comment #automatiquement #une #description #partir #de #votre #contenu #dans #WordPress
ADD COMMENT
Topic
Name
8+5 =