• Skip to main content

Victor Font Consulting Group, LLC

Strategic IT Solutions for Complex Organizations

  • Home
  • Care Plans
    • Care Articles
    • Optional Subscriptions
  • Consultations
  • Products
    • Code Snippets
    • Public GitHub Repositories
    • Gist Snippets
    • Pastebin Snippets (Free)
    • Free Plugins
  • FAQs
  • Support
    • Graphic Design
  • Contact
    • Speakers
    • Portfolio
  • Resources
    • Free WordPress Video Training
    • Tutorials
    • Articles
    • Cybersecurity
    • EU Referral Network

How to Change the WordPress Read More […] Text

posted on March 6, 2015

One frequently asked question that users pose is “How do I change the WordPress […] text on post excerpts?”

In many cases, not only do people ask about changing the text, but they would also like to turn the text into a link to the post. Add one of the code snippets below to your functions.php and you will achieve your desired goal.

add_filter( 'the_excerpt', 'vmf_read_more_custom_excerpt' );
function vmf_read_more_custom_excerpt( $text ) {
	if ( strpos( $text, '[…]') ) {
		$excerpt = str_replace( '[…]', '[Read More…]', $text );
	} else {
		$excerpt = $text;
	}
	return $excerpt;
}
add_filter( 'the_excerpt', 'vmf_read_more_custom_excerpt' );
function vmf_read_more_custom_excerpt( $text ) {
	if ( strpos( $text, '[…]') ) {
		$excerpt = str_replace( '[…]', '[Read More…]', $text );
	} else {
		$excerpt = $text;
	}
	return $excerpt;
}

You can also use these snippets for content limited excerpts by changing "the_excerpt" in the add-filter statement to "the_content_limit".

  • 0shares
  • Facebook0
  • Twitter0
  • Pinterest0
  • LinkedIn0
  • Print
  • SMS0

About Victor M. Font Jr.

Victor M. Font Jr. is an award winning author, entrepreneur, and Senior IT Executive. A Founding Board Member of the North Carolina Executive Roundtable, he has served on the Board of Advisors, of the North Carolina Technology Association, the International Institute of Business Analysis, Association of Information Technology Professionals, Toastmasters International, and the North Carolina Commission for Mental Health, Developmental Disabilities, and Substance Abuse Services. He is author of several books including The Ultimate Guide to the SDLC and Winning With WordPress Basics, and Cybersecurity.

 
We only use analytical cookies on our website that allow us to recognize and count the number of visitors, but they do not identify you individually. They help us to improve the way our website works. By clicking Accept you, agree to cookies being used in accordance with our Cookie Policy.