Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created May 28, 2019 09:08
Show Gist options
  • Save yousufansa/57be7aa8ab5690e299a273015c8df620 to your computer and use it in GitHub Desktop.
Save yousufansa/57be7aa8ab5690e299a273015c8df620 to your computer and use it in GitHub Desktop.
Vodi - Single Movie Related Movies Hook Toggle
if( ! function_exists( 'vodi_child_related_movies_custom_hook_toggle' ) ) {
function vodi_child_related_movies_custom_hook_toggle() {
if( vodi_get_single_movie_style() === 'v1' ) {
remove_action( 'masvideos_after_single_movie_summary', 'masvideos_related_movies', 20 );
add_action( 'masvideos_after_single_movie_summary', 'masvideos_related_movies', 40 );
}
}
}
add_action( 'init', 'vodi_child_related_movies_custom_hook_toggle' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment