You appear to be a bot. Output may be restricted
Description
Replaces "[.
..]" (appended to automatically generated excerpts) with … and a 'Continue reading' link. Create your own twentysixteen_excerpt_more() function to override in a child theme.
Usage
$string = twentysixteen_excerpt_more();
Parameters
Returns
string 'Continue reading' link prepended with an ellipsis.
Source
File name: twentysixteen/inc/template-tags.php
Lines:
1 to 10 of 10
function twentysixteen_excerpt_more() { $link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>', esc_url( get_permalink( get_the_ID() ) ), /* translators: %s: Post title. Only visible to screen readers. */ sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), get_the_title( get_the_ID() ) ) ); return ' … ' . $link; }