can hyperlinks be displayed in excerpts?

By default, it looks like all hyperlinks are stripped out of excerpts. Perhaps this is to prevent link power from diluting.

Is there a way to allow hyperlinks to display in excerpt content?

Related posts

Leave a Reply

1 comment

  1. WordPress uses the filter wp_trim_excerpt to strip the tags. You can remove the filter and create your own which will allow the links:

    <?php
    function new_wp_trim_excerpt($text) {
      $raw_excerpt = $text;
      if ( '' == $text ) {
        $text = get_the_content('');
        $text = strip_shortcodes( $text );
        $text = apply_filters('the_content', $text);
        $text = str_replace(']]>', ']]>', $text);
        $text = strip_tags($text, '<a>');
        $excerpt_length = apply_filters('excerpt_length', 55);
        $excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
        $words = preg_split('/(<a.*?a>)|n|r|t|s/', $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE );
        if ( count($words) > $excerpt_length ) {
          array_pop($words);
          $text = implode(' ', $words);
          $text = $text . $excerpt_more;
          } 
        else {
          $text = implode(' ', $words);
          }
        }
      return apply_filters('new_wp_trim_excerpt', $text, $raw_excerpt);
      }
    remove_filter('get_the_excerpt', 'wp_trim_excerpt');
    add_filter('get_the_excerpt', 'new_wp_trim_excerpt');
    

    SOURCE:
    http://lewayotte.com/2010/09/22/allowing-hyperlinks-in-your-wordpress-excerpts/