Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created July 5, 2019 15:03
Show Gist options
  • Save yousufansa/6c94057a4d75a5ee37fe39d82d560b9b to your computer and use it in GitHub Desktop.
Save yousufansa/6c94057a4d75a5ee37fe39d82d560b9b to your computer and use it in GitHub Desktop.
Vodi - Remove Single Video Show Hide
if ( ! function_exists( 'vodi_child_remove_single_video_show_hide' ) ) {
function vodi_child_remove_single_video_show_hide( $value ) {
if ( is_video() ) {
return false;
}
return $value;
}
}
add_filter( 'vodi_enable_vodi_readmore', 'vodi_child_remove_single_video_show_hide', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment