';
the_content( sprintf(
wp_kses(
// translators: %s: Name of current post. Only visible to screen readers
__( 'Continue reading
"%s"', 'algori-shop' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
) );
wp_link_pages( array(
'before' => '
' . esc_html__( 'Pages:', 'algori-shop' ),
'after' => '
',
) );
echo '
';
echo '';
}else{ // Return excerpt content for each post in a list when not a single post type
echo '';
the_excerpt();
$read_more_link = sprintf(
// translators: %s: Name of current post.
wp_kses( __( 'Continue reading %s', 'algori-shop' ), array( 'span' => array( 'class' => array() ) ) ),
the_title( '
"', '"', false )
);
echo '
' . $read_more_link . '';
echo '
';
}
?>