WordPress分类描述默认只是textarea文本框,如果要图文结合的介绍当前分类,就得编辑描述或添加图片,所以我们将改造下后台的分类描述表单。
一、添加代码functions.php函数文件
将如下代码添加到functions.php函数文件中,编辑器可设置wp_editor
函数
- add_action("category_edit_form_fields", 'add_form_fields_example', 10, 2);
- function add_form_fields_example($term, $taxonomy){
- ?>
- <tr valign="top">
- <th scope="row"><?php _e('描述','salong'); ?></th>
- <td>
- <?php wp_editor(html_entity_decode($term->description), 'description', array('media_buttons' => true,'quicktags'=>true)); ?>
- <script>
- jQuery(window).ready(function(){
- jQuery('label[for=description]').parent().parent().remove();
- });
- </script>
- </td>
- </tr>
- <?php
- }
二、获取分类描述
- <?php echo term_description( $term_id, 'category' ); ?>
本文由 远方的雪山 作者:萨龙龙 发表,转载请注明来源!