Created
July 28, 2020 15:23
-
-
Save farookibrahim/72d06bd5742f48f6fefc56d87fa7f66d to your computer and use it in GitHub Desktop.
Vodi - TV Show single description move to above Review
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( 'vi_child_customize_single_tv_show_tabs' ) ) { | |
function vi_child_customize_single_tv_show_tabs( $tabs ) { | |
unset( $tabs['description'] ); | |
return $tabs; | |
} | |
} | |
add_filter( 'masvideos_template_single_tv_show_tabs', 'vi_child_customize_single_tv_show_tabs' ); | |
if( ! function_exists( 'vi_child_single_tv_show_move_description' ) ) { | |
function vi_child_single_tv_show_move_description() { | |
if ( is_single() && is_tv_show() ) { | |
echo '<h4>' . esc_html__( 'Description', 'vodi' ) . '</h4>'; | |
masvideos_template_single_tv_show_description(); | |
} | |
} | |
} | |
add_action( 'masvideos_after_single_tv_show_summary', 'vi_child_single_tv_show_move_description', 27 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment