Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: excerpt_more

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
4002           $excerpt_length = (int) apply_filters( 'excerpt_length', $excerpt_length );
4003
4004           /**
4005            * Filters the string in the "more" link displayed after a trimmed excerpt.
4006            *
4007            * @since 2.9.0
4008            *
4009            * @param string $more_string The string shown within the more link.
4010            */
4011           $excerpt_more = apply_filters( 'excerpt_more', ' ' . '[…]' );
4012           $text         = wp_trim_words( $text, $excerpt_length, $excerpt_more );
4013
4014      }
4015
4016      /**
4017       * Filters the trimmed excerpt string.
4018       *
4019       * @since 2.8.0
4020       *