Skip to content

Instantly share code, notes, and snippets.

@ibndawood
Created October 15, 2015 06:05
Show Gist options
  • Select an option

  • Save ibndawood/ff93192f249414cafe14 to your computer and use it in GitHub Desktop.

Select an option

Save ibndawood/ff93192f249414cafe14 to your computer and use it in GitHub Desktop.
Changing the "Read More" text in Sportexx
<?php
add_filter( 'sportexx_blog_post_readmore_text', 'sx_child_change_readmore_text' );
function sx_child_change_readmore_text( $readmore ) {
return __( 'Your custom text for Read More', 'sportexx-child' );
}
@ibndawood
Copy link
Copy Markdown
Author

Please paste the above code in your child theme's functions.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment