add_filter( 'wpex_excerpt_output', function( $excerpt ) { global $post; if ( $post && 'testimonials' == $post->post_type && $post->post_excerpt ) { $readmore…
By default the Total theme doesn't include a single testimonial shortcode but if you want to add one to your…
function my_testimonials_page_title( $title ) { if ( is_singular( 'testimonials' ) ) { $title = get_the_title(); } return $title; } add_filter(…