我正在使用Customizr Theme 并使用静态页面呈现其首页。我还有两个侧边栏(左和右)。
我使用了静态页面,因为当我放置滑块时,它会显示在侧边栏上方。我试着把它放在侧边栏之间。
我添加了一个PHP snippet 在我的孩子的主题,这将使它出现在我想要的地方。
function move_my_slider() {
//we unhook the slider
remove_action( \'__after_header\' ,
array( TC_slider::$instance , \'tc_slider_display\' ));
//we re-hook the slider. Check the priority here : set to 0 to be the first in the list of different actions hooked to this hook
add_action( \'__before_loop\' ,
array( TC_slider::$instance , \'tc_slider_display\' ), 0);
}
你可以看到我在哪里测试它
here. 但是当我尝试使用测试页面作为首页时,滑块没有出现?如何在首页中包含滑块?