hello,
how can i hide lists (li/ol/list_style_type) from excerpts in wordpress?
thanks in advance
hello,
how can i hide lists (li/ol/list_style_type) from excerpts in wordpress?
thanks in advance
Why not add a specific class around the excerpt and then set lists within that class to display none. Like this:
<div class="excerpt">
<?php the_excerpt(); ?>
</div>
Then in your CSS try this:
.excerpt ul, .excerpt ol {
display: none;
}
That will prevent them from showing all together. To just hide the bullet point or the numbers use this:
.excerpt ul, .excerpt ol {
list-style-type: none;
}This topic has been closed to new replies.