Skip to content

Instantly share code, notes, and snippets.

@blakewilson
Created May 8, 2018 04:15
Show Gist options
  • Save blakewilson/925268eedbe3cecc9809a93383552cd2 to your computer and use it in GitHub Desktop.
Save blakewilson/925268eedbe3cecc9809a93383552cd2 to your computer and use it in GitHub Desktop.
Video Background Change "Tap to unmute" text
<?php
/**
* Change Video Background "Tap to unmute" text
*
* @since 2.7.0
* @author Push Labs
* @param String $text The button text
* @return String $text
*/
function themeprefix_vidbg_tap_to_unmute_text( $use_old ) {
$text = 'Tap to unmute';
return $text;
}
add_filter( 'vidbg_tap_to_unmute_text', 'themeprefix_vidbg_tap_to_unmute_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment