• ResolvedPlugin Contributor Chris Dillon

    (@cdillon27)


    For the widget, use the strong_widget_read_more_text filter. For example, add this to your theme’s functions.php:

    /**
     * Change the widget "Read more" link text.
     */
    function my_strong_widget_read_more_text( $text ) {
    	return "More testimonials »";
    }
    add_filter( 'strong_widget_read_more_text', 'my_strong_widget_read_more_text', 10, 1 );

    For the [strong] shortcode, use the more_post and more_text attributes like in this demo.

    https://wordpress.org/plugins/strong-testimonials/

Viewing 1 replies (of 1 total)
  • Plugin Contributor Chris Dillon

    (@cdillon27)

    The original widget has been deprecated and will be removed in version 2.0 in early 2016.

    As of version 1.21, Views are like the widget all grown up. Configure a View, including the “Read more” phrase and target link, and add the View to a sidebar using the new widget.

Viewing 1 replies (of 1 total)
  • The topic ‘How to change the "Read more" link text’ is closed to new replies.