Read More not Showing

I have put this code in to the child pro theme and it is not showing up the readmore. I also have it set to full length and inserted the read more tag in the post and it is still not showing. Thoughts?

function x_excerpt_string( $more ) {
$stack = x_get_stack();
if ( $stack == ‘integrity’ ) {
return ’ …

’ . __( ‘Read More’, ‘x’ ) . ‘
’;
} else if ( $stack == ‘renew’ ) {
return ’ … ’ . __( ‘Read More’, ‘x’ ) . ‘’;
} else if ( $stack == ‘icon’ ) {
return ’ … ’ . __( ‘Read More’, ‘x’ ) . ‘’;
} else if ( $stack == ‘ethos’ ) {
return ’ … ’ . __( ‘Read More’, ‘x’ ) . ‘’;
}
}
add_filter( ‘excerpt_more’, ‘x_excerpt_string’ );

Hi Jon,

Thank you for writing in, regretfully we do not provide support for any customization here in the forum. If you are unfamiliar with code and resolving potential conflicts, you may opt-in on our One service for further assistance.

Thank you for understanding,

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.