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 !