如何从除第一个博客页面之外的其余博客页面隐藏顶部滑块


How can I hide top slider from the remaining blog pages except the first blog page?

我想从博客页面中隐藏顶部滑块部分,但在第一个博客页面中,我想保留它。您可以查看此链接: http://site4preview.site90.net/wordpress/.页面导航中有两个页面。我想从第 2 页开始的所有页面隐藏滑块,除了 1。那么有什么办法可以做到吗?提前谢谢。

您需要

检查该页面是否是"分页"页面,为此您必须使用 is_paged() .

试试这个。

<?php
    if( !is_paged() ) {
        //Slider Goes Here
    }
?>

编辑:

你可以用CSS隐藏,这不是最好的解决方案,但它可以完成工作。

如果您有多个滑块,则可以使用此级联来更精确

.paged .block-content .widget-area .recent-posts-flexslider-class { 
    display: none 
}

只需隐藏分页页面下的所有滑块

.paged .recent-posts-flexslider-class {
    display: none;
}

或者,如果您知道 CSS 使用仅在可视化分页模板时显示的类.paged隐藏您想要的div