How to change the "Read more" link text
-
For the widget, use the
strong_widget_read_more_text
filter. For example, add this to your theme’sfunctions.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 themore_post
andmore_text
attributes like in this demo.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to change the "Read more" link text’ is closed to new replies.