How do I remove excerpts
from my posts?
Hello,
The simplest way, is to hide it with CSS.
Inspect the HTML with the developer tools (hit F12 key).
Find the class or id you want to hide.
e.g.
<div id="excerptID">Bla bla</div>
or
<div class="excerptClass">Bla bla</div>
Then apply this CSS :
#excerptID{display:none;}
or
.classID{display:none;}
Cheers !
Iām having problems finding the class or id I want to hide. Kindly help. I can provide login details for my website.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.