『子比功能自定义二』分类/标签页面 文章数总计、描述隐藏

前言

修改教程仅用于功能实现,如果您觉得功能不需要,可以路过,谢谢。

实现效果:

 

 

 

上下对比

定位文件

本文隐藏内容
  • zibll/inc/options/admin-options.php
  • zibll/inc/functions/zib-category.php

代码

本文隐藏内容
  • admin-options.php 搜索 “分类页面” ,下面插入红框代码

 

代码:

 
 
 
array(
'title' => __('显示文章总计', 'zib_language'),
'id' => 'page_cat_sum_s',
'type' => 'switcher',
'default' => true,
),
array(
'title' => __('显示分类描述', 'zib_language'),
'id' => 'cat_show_desc',
'type' => 'switcher',
'default' => true,
),
  • admin-options.php 搜索 “标签页面” ,下面插入红框代码

 

代码:

 
 
 
array(
'title' => __('显示文章总计', 'zib_language'),
'id' => 'page_tag_sum_s',
'type' => 'switcher',
'default' => true,
),
array(
'title' => __('显示分类描述', 'zib_language'),
'id' => 'tag_show_desc',
'type' => 'switcher',
'default' => true,
),
  • zib-category.php 
  • 搜索 “zib_cat_cover()”函数,整个函数替换:
 
 
 
function zib_cat_cover($cat_id = '')
{
if (!$cat_id) {
$cat_id = get_queried_object_id();
}
if (_pz('cat_show_desc', true)){
$desc = trim(strip_tags(category_description()));
if (is_super_admin() && !$desc) {
$desc = '请在Wordress后台-文章-文章分类中添加分类描述!';
}
 
$desc .= zib_get_term_admin_edit('编辑此分类');
}
//global $wp_query;
 
$cat = get_category($cat_id);
$count = zib_get_cat_postcount($cat_id, 'category');
$title = '<i class="fa fa-folder-open em12 mr10 ml6" aria-hidden="true"></i>' . $cat->cat_name;
if (_pz('page_cat_sum_s', true)){
$title .= '<span class="icon-spot">共' . $count . '篇</span>';
} else {
$title .= '';
}
//$title .='<pre>'. json_encode($wp_query) .'</pre>';
if (_pz('page_cover_cat_s', true)) {
$img = zib_get_taxonomy_img_url(null, null, _pz('cat_default_cover'));
zib_page_cover($title, $img, $desc);
} else {
echo '<div class="zib-widget">';
echo '<h4 class="title-h-center">' . $title . '</h4>';
echo '<div class="muted-2-color">' . $desc . '</div>';
echo '</div>';
}
}
  • 同理搜索 “zib_tag_cover()”函数,整个函数替换:
 
 
 
function zib_tag_cover()
{
if (_pz('tag_show_desc', true)){
$desc = trim(strip_tags(tag_description()));
if (is_super_admin() && !$desc) {
$desc = '请在Wordress后台-文章-文章分类中添加标签描述!';
}
 
$desc .= zib_get_term_admin_edit('编辑此标签');
}
global $wp_query;
$tag_id = get_queried_object_id();
$tag = get_tag($tag_id);
$count = $tag->count;
$title = '<i class="fa fa-tag em12 mr10 ml6" aria-hidden="true"></i>' . $tag->name;
if (_pz('page_tag_sum_s', true)){
$title .= '<span class="icon-spot">共' . $count . '篇</span>';
} else {
$title .= '';
}
if (_pz('page_cover_tag_s', true)) {
$img = zib_get_taxonomy_img_url(null, null, _pz('tag_default_cover'));
zib_page_cover($title, $img, $desc);
} else {
echo '<div class="zib-widget">';
echo '<h4 class="title-h-center">' . $title . '</h4>';
echo '<div class="muted-2-color">' . $desc . '</div>';
echo '</div>';
}
}

最后

  • 修改文件具有风险,注意备份相关文件
© 版权声明
1:本网站名称:源码库
2:本站永久网址:www.ymkuz.com
3:本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
4:分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
5:本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
6:本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7:如有链接无法下载、失效或广告,请联系管理员处理!
8:文章投稿-投诉建议E-mail:yunduanw@qq.com 站长QQ:99767152
THE END
点赞4572 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容