Owl主题安装之后,多多少少还是会有一些问题的,这里记录一些主题Owl常见的问题及修正方案。
安装主题启用后白页
这个问题只需要在启用主题前将所有的插件全部关闭然后在启用主题后在去重启插件便不会有这个问题。
浏览数和wp-postviews不能同步
因为我用的是wp-postviews的,所直接去format-standard.php中搜一下:mate-view 定义到如下行:
<li class="mate-view"> <i class="fa fa-eye"></i> <?php echo getPostViews(get_the_ID()); ?> </li>
然后替换成:
<li class="mate-view"> <i class="fa fa-eye"></i> <?php if(function_exists('the_views')) { the_views(); } ?> <?php //echo getPostViews(get_the_ID()); ?> </li>
就可以了。
留言显示楼层有问题
打开function.php搜索:获取每页评论数 定位到如下代码:
$page = get_query_var('cpage')-1; $cpp=get_option('comments_per_page');//获取每页评论数 $commentcount = $cpp * $page;
替换成:
if($page != 0) { $page = get_query_var('cpage')-1; $cpp=get_option('comments_per_page');//获取每页评论数 $commentcount = $cpp * $page; }
就可以了。