月薪1800块的站长
不打算了解一下吗

xiu主题轻量化二开攻略(删除文章页的小工具侧栏并优化为C2的css设置)

文章页,无侧栏大图模式single.php

<?php get_sidebar(); get_footer(); ?>

改成

<?php get_footer(); ?>

在functions.xiu.php

if( _hui('list_thumb_left') ){
    $class .= ' excerpt_thumb_left';
}

下面插入

if( (is_page() || is_single()) ){
    $class .= ' ui-c2';
}

 

赞(1)
分享到: 更多 (0)