Created
May 26, 2020 16:49
-
-
Save ibndawood/cdf7b9cff4a1dfc3ed287323bc0d7031 to your computer and use it in GitHub Desktop.
Vodi - Change "Up Next" title
This file contains hidden or 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( 'vodi_template_single_video_prev_next_videos_title', 'vd_child_change_prev_next_videos_title', 10 ); | |
function vd_child_change_prev_next_videos_title( $title ) { | |
return esc_html__( 'Coming Up', 'vodi' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment