外观 编辑中 Theme Header (header.php)
<?php
if ( is_front_page()) :
if ( get_theme_mod('wip_enable_slideshow') == 'on' || !get_theme_mod('wip_enable_slideshow') ) :
do_action('wip_header_slideshow');
endif;
else:
do_action('wip_get_breadcrumb');
endif;
?>
if ( is_front_page()) :
if ( get_theme_mod('wip_enable_slideshow') == 'on' || !get_theme_mod('wip_enable_slideshow') ) :
do_action('wip_header_slideshow');
endif;
else:
do_action('wip_get_breadcrumb');
endif;
?>
替换成:
<?php
if ( is_front_page()) :
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow(); } ;
endif;
?>
<?php
if ( is_front_page()) :
if ( get_theme_mod(‘wip_enable_slideshow’) == ‘on’ || !get_theme_mod(‘wip_enable_slideshow’) ) :
do_action(‘wip_header_slideshow’);
endif;
else:
do_action(‘wip_get_breadcrumb’);
endif;
?>