¿Demasiado perezoso para añadir una meta descripción a tus artículos? Entonces, ¿por qué no generar automáticamente una meta descripción de su entrada de WordPress mediante la eliminación de todos los códigos cortos y etiquetas? He aquí cómo hacerlo.
Instrucciones:
Añade este código al archivo functions.php de tu tema o en un plugin específico del sitio. Asegúrese de que tiene wp_head(); ?> en el header.php de su tema wordpress o este fragmento no funcionará.
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("n", "r", "t"), ' ', $meta); $meta = substr($meta, 0, 125); echo "<meta name='description' content='$meta' />"; } add_action('wp_head', 'create_meta_desc');
Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo copiar / pegar correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.
Si le gustó este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: Los mejores constructores de páginas de WordPress (Comparados).
As already mentioned (no clue why the author is not updating his mistake) strip/replace this code part: $meta = strip_shortcodes($post->post_content); with just: $meta = strip_shortcodes($meta); else it has no sence and is incorrect and looks terrible on google!
Wow,. that broke my site. As soon as you put it in the header you get an error code so it doesn’t work. Too bad as it’s exactly what I needed 🙁
what is the error you get?
substr() will create invalid UTF-8. Use mb_substr() instead
// add meta description tag
function wcs_add_meta_description_tag() {
global $post;
if ( is_single() ) {
$meta = strip_tags( $post->post_content );
$meta = strip_shortcodes( $post->post_content );
$meta = str_replace( array(“\n”, “\r”, “\t”), ‘ ‘, $meta );
$meta = mb_substr( $meta, 0, 125, ‘utf8’ );
echo ” . “\n”;
}
}
add_action( ‘wp_head’, ‘wcs_add_meta_description_tag’ , 2 );
Would you think possible to take H2 content from a post, limit the numbers of characters or word, and copy it into the description by default? Thanks!
Sorry Pal, but here’s a correction on this algorithm:
function create_meta_desc() {
global $post;
if (!is_single()) { return; }
$meta = strip_tags($post->post_content);
$meta = strip_shortcodes($meta); /* here you have to use the same variable, or else the strip_tags will not have any effect */
$meta = str_replace(array(“n”, “r”, “t”), ‘ ‘, $meta);
$meta = substr($meta, 0, 125);
echo “”;
}
add_action(‘wp_head’, ‘create_meta_desc’);
[…] [Source: WpSnipp] […]
have HTML TAGS !
I’m not sure what you mean? however HTML tags are stripped out using “strip_tags”
no it isn’t. i had to add a strip_tags right before the substr() function, that worked