Grčka
if ( ! function_exists( ‘themesharbor_more_link_custom_excerpt’ ) ) :
/**
* Prints a More Link in the custom excerpt.
*/
function themesharbor_more_link_custom_excerpt( $excerpt ) {
if ( has_excerpt( get_the_ID() ) ) {
$excerpt .= ‘
‘ . esc_html__( ‘Read More’, ‘themesharbor’ ) . ‘
‘;
}
return $excerpt;
}
add_filter( ‘the_excerpt’, ‘themesharbor_more_link_custom_excerpt’ );
endif;