Skip to content

Instantly share code, notes, and snippets.

@ibndawood
Created May 26, 2020 16:49
Show Gist options
  • Save ibndawood/cdf7b9cff4a1dfc3ed287323bc0d7031 to your computer and use it in GitHub Desktop.
Save ibndawood/cdf7b9cff4a1dfc3ed287323bc0d7031 to your computer and use it in GitHub Desktop.
Vodi - Change "Up Next" title
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