- 资源介绍
- 更新记录
- 安装教程
WordPress 分类目录的描述添加可视化编辑器
默认情况下,WordPress后台的 分类目录 的描述只能添加纯文本内容,今天分享一下为 WordPress 分类目录的描述添加可视化编辑器的方法。

将下面的代码添加到当前主题的 functions.php 即可:
/**
* 为 WordPress 分类目录的描述添加可视化编辑器
*/
// 移除HTML过滤
remove_filter( ‘pre_term_description’, ‘wp_filter_kses’ );
remove_filter( ‘term_description’, ‘wp_kses_data’ );
//为分类编辑界面添加可视化编辑器的“描述”框
add_filter(‘edit_category_form_fields’, ‘cat_description’);
function cat_description($tag)
{
?>
<table class=”form-table”>
<tr class=”form-field”>
<th scope=”row” valign=”top”><label for=”description”><?php _ex(‘Description’, ‘Taxonomy Description’); ?></label></th>
<td>
<?php
$settings = array(‘wpautop’ => true, ‘media_buttons’ => true, ‘quicktags’ => true, ‘textarea_rows’ => ’15’, ‘textarea_name’ => ‘description’ );
wp_editor(wp_kses_post($tag->description , ENT_QUOTES, ‘UTF-8’), ‘cat_description’, $settings);
?>
<br />
<span class=”description”><?php _e(‘The description is not prominent by default; however, some themes may show it.’); ?></span>
</td>
</tr>
</table>
<?php
}
//移除默认的“描述”框
add_action(‘admin_head’, ‘remove_default_category_description’);
function remove_default_category_description()
{
global $current_screen;
if ( $current_screen->id == ‘edit-category’ )
{
?>
<script type=”text/javascript”>
jQuery(function($) {
$(‘textarea#description’).closest(‘tr.form-field’).remove();
});
</script>
<?php
}
}
猜你喜欢
-
WordPress友情链接函数 wp_list_bookmarks() 详解
2021-04-26 -
wordpress添加一个说说页面
2021-04-26 -
Ripro美化-评论框显示用户浏览器及操作系统信息
2021-04-25 -
Ultimate Reviewer for WPBakery Page Builder 可视化点评插件 – v2.6.1
2021-04-24 -
爱剪辑V3.0去片头片尾无弹窗广告完美版本
2021-04-25 -
WordPress 5.7中文版2021.3最新版下载
2021-04-21 -
Lemars – 专业新闻博客资讯网站WordPress模板
2021-04-21 -
需要授权小八子主题v8.1
2021-04-24 -
Zibll子比主题 V4.0 没有破解成功不建议使用
2021-04-24 -
7b2柒比贰V2.8.0破解去授权WordPress主题
2021-04-21
-
WordPress如何解决文章ID不连续的问题
2021-04-25 -
博客社交分享组件WP插件-打赏/点赞/微海报/社交分享四合一
2021-04-24 -
RiPro主题文章标题美化代码教程
2021-04-24 -
SEO优化怎样增加网站收录量
2021-04-24 -
WordPress开源主题Hankin 最新版
2021-04-21 -
WordPress SEO优化之如何给文章关键词标签自动添加内链
2021-04-25 -
query_posts()函数
2021-04-26 -
WordPress 5.5 正式版发布,主要更新20个新功能
2021-04-21 -
为什企业站用户跳出率高的原因有哪些
2021-04-24 -
网站百度排名如何去提高
2021-04-24
猜你在找
常见问题FAQ
- 免费下载或者VIP会员专享资源能否直接商用?
- 本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
- 提示下载完但解压或打开不了?
- 找不到素材资源介绍文章里的示例图片?
- 大资源
- 2021-04-26Hi,初次和大家见面了,请多关照!
最后编辑:2021-04-26

