= 0 ) : return absint( $excerpt_length ); else : return 55; // Number of words. endif; } add_filter( 'excerpt_length', 'harrison_excerpt_length' ); /** * Change excerpt more text for posts * * @param String $more_text Excerpt More Text. * @return string */ function harrison_excerpt_more( $more_text ) { if ( is_admin() ) { return $more_text; } return esc_html( ' ' . harrison_get_option( 'excerpt_more_text' ) ); } add_filter( 'excerpt_more', 'harrison_excerpt_more' );