Forums

hiding lists from excerpts (2 posts)

  1. kaneesha
    Member
    Posted 2 years ago #

    hello,
    how can i hide lists (li/ol/list_style_type) from excerpts in wordpress?

    thanks in advance

  2. equalmark
    Member
    Posted 2 years ago #

    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;
    }

Topic Closed

This topic has been closed to new replies.

About this Topic