Created
May 28, 2019 09:08
-
-
Save yousufansa/57be7aa8ab5690e299a273015c8df620 to your computer and use it in GitHub Desktop.
Vodi - Single Movie Related Movies Hook Toggle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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