使用Customizr主题在首页(主页)显示滑块

时间:2013-11-27 作者:lozadaOmr

我正在使用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. 但是当我尝试使用测试页面作为首页时,滑块没有出现?如何在首页中包含滑块?

1 个回复
最合适的回答,由SO网友:Nicolas Guillaume 整理而成

首页上显示的滑块是您定义的滑块from the customizer option screen. 它会覆盖您指定给您选择作为首页的页面的页面。

希望这有帮助。

结束

相关推荐

在Header.php中显示自定义微件值

我将下面的代码用于自定义小部件。我在小部件中添加了一些字段,如:Title, Name 和复选框。现在一切都很好,但我想在标题中显示这些值。php。有什么想法或建议吗?add_action( \'widgets_init\', \'my_widget\' ); function my_widget() { register_widget( \'MY_Widget\' ); } class MY_Widget extends WP_Wid