¿Estás buscando una forma de comprobar si una entrada contiene un extracto? Aunque probablemente exista un plugin para ello, hemos creado un rápido fragmento de código que puedes utilizar para comprobar si una entrada tiene la función the_excerpt
en WordPress.
WordPress utilizará el post como un extracto cuando no exista uno, por lo que esta es una gran manera de mostrar el extracto cuando no todos los post contienen uno.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo post.php de tu tema:
<?php $my_excerpt = get_the_excerpt(); if($my_excerpt !='') { the_excerpt(); } ?>
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si te ha gustado este fragmento de código, por favor, considere revisar nuestros otros artículos en el sitio como: 21 mejores temas de WordPress para inmobiliarias y cómo empezar un blog.
i have moddriod theme installed on my website but some posts are showing excerpts and some are picking random texts and tags from the post, some of them only show the title which is not attractive as well as acceptable. will it work if I follow your instructions? I am not sure about the problem source
1. is it in the theme
2. rank math plugin
or anything else please help me.
Hey Kishor, you can troubleshoot by disabling the plugins one by one and see if any plugin is causing the issue.
[…] This post was mentioned on Twitter by HN Firehose, wp_freak. wp_freak said: #wordpress Check it post has the_excerpt http://bit.ly/h8VGwl […]
WordPress Check it post has the_excerpt – wpsnipp.com WordPress code snippets for your blog…
Adding this PHP code to your wordpress theme will allow you to check if a post contains an excerpt. WordPress will use the_content as an excerpt when one does not exists so this is a great way to display the excerpt when not every post will contain one…