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 ’ …
} 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’ );