Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created June 16, 2020 13:13
Show Gist options
  • Select an option

  • Save farookibrahim/e778bff2a514b0334a31012f70bca5fa to your computer and use it in GitHub Desktop.

Select an option

Save farookibrahim/e778bff2a514b0334a31012f70bca5fa to your computer and use it in GitHub Desktop.
Vodi - Section Featured Post Block Change Button Text
if( ! function_exists( 'vodi_child_section_featured_post_args' ) ) {
function vodi_child_section_featured_post_args( $args ) {
$args['action_text'] = 'Play Video';
return $args;
}
}
add_filter( 'vodi_section_featured_post', 'vodi_child_section_featured_post_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment