Você está procurando uma maneira de verificar se uma publicação contém um trecho? Embora provavelmente haja um plug-in para isso, criamos um trecho de código rápido que você pode usar para verificar se a publicação tem a
função the_excerpt
no WordPress.
O WordPress usará a postagem como um trecho quando não houver um, portanto, essa é uma ótima maneira de exibir o trecho quando nem todas as postagens contiverem um.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo post.php do seu tema:
<?php $my_excerpt = get_the_excerpt(); if($my_excerpt !='') { the_excerpt(); } ?>
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como adicionar corretamente trechos de código no WordPress para não danificar acidentalmente seu site.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 21 melhores temas imobiliários do WordPress e como iniciar um 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…