Last active
August 29, 2015 14:03
-
-
Save danjjohnson/46a07c0f703ccfe3c465 to your computer and use it in GitHub Desktop.
Sensei - Rename "New Courses" to "Recent Courses"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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