如果本文让你有收获,推荐你成为VIP会员,现在只需98 即可学习全部付费内容,价值超6800元,日更的搞钱情报和项目玩法 让你走在别人前面 真正的走在搞钱一线!掌握更多机会,实现多种副业人生!
前言
已适配子比V6.6
修改教程仅用于功能实现,如果您觉得功能不需要,可以路过,谢谢。
实现效果:
上下对比
定位文件
本文隐藏内容
- zibll/inc/options/admin-options.php
- zibll/inc/functions/zib-category.php
代码
本文隐藏内容
==============分割线,以下代码适用于子比V6.6及以上版本=============
- admin-options.php 搜索“分类页面” ,下面插入红框代码
代码:
array(
'title' => __('显示分类描述', 'zib_language'),
'id' => 'cat_show_desc',
'type' => 'switcher',
'default' => true,
),
- admin-options.php 搜索 “标签页面” ,下面插入红框代码
代码:
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);
$title = '<i class="fa fa-folder-open em12 mr10 ml6" aria-hidden="true"></i>' . $cat->cat_name;
if (_pz('cat_post_count_s', true)) {
$count = zib_get_the_found_posts();
$title .= '<span class="icon-spot">共' . $count . '篇</span>';
}
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-left">' . $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);
$title = '<i class="fa fa-tags em12 mr10 ml6" aria-hidden="true"></i>' . $tag->name;
if (_pz('tag_post_count_s', true)) {
$count = zib_get_the_found_posts();
$title .= '<span class="icon-spot">共' . $count . '篇</span>';
}
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-left">' . $title . '</h4>';
echo '<div class="muted-2-color">' . $desc . '</div>';
echo '</div>';
}
}
==============分割线,以下代码适用于子比V6.5.2及以下版本=============
- 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_the_found_posts();
$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_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_the_found_posts();
$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>';
}
}
最后
- 修改文件具有风险,注意备份相关文件
有超过25%的用户阅读本文后选择 成为VIP会员,298VIP会员限时98!联系客服即可开通
© 版权声明
本站内容转载于网络,版权归原作者所有,仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任,若侵犯到你的版权利益,请联系我们,会尽快给予删除处理!