Skip to content

Instantly share code, notes, and snippets.

@danjjohnson
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danjjohnson/46a07c0f703ccfe3c465 to your computer and use it in GitHub Desktop.
Save danjjohnson/46a07c0f703ccfe3c465 to your computer and use it in GitHub Desktop.
Sensei - Rename "New Courses" to "Recent Courses"
add_filter( 'sensei_new_courses_text', 'sensei_custom_new_courses_text', 10 );
function sensei_custom_new_courses_text () {
$text = "Recent Courses";
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment