WordPress

WordPress为分类描述添加wp_editor编辑器

LensNews

WordPress分类描述默认只是textarea文本框,如果要图文结合的介绍当前分类,就得编辑描述或添加图片,所以我们将改造下后台的分类描述表单。

一、添加代码functions.php函数文件

将如下代码添加到functions.php函数文件中,编辑器可设置wp_editor函数

  1. add_action("category_edit_form_fields", 'add_form_fields_example', 10, 2);
  2. function add_form_fields_example($term$taxonomy){
  3.     ?>
  4.     <tr valign="top">
  5.         <th scope="row"><?php _e('描述','salong'); ?></th>
  6.         <td>
  7.             <?php wp_editor(html_entity_decode($term->description), 'description', array('media_buttons' => true,'quicktags'=>true)); ?>
  8.             <script>
  9.                 jQuery(window).ready(function(){
  10.                     jQuery('label[for=description]').parent().parent().remove();
  11.                 });
  12.             </script>
  13.         </td>
  14.     </tr>
  15.     <?php
  16. }

二、获取分类描述

  1. <?php echo term_description( $term_id, 'category' ); ?>
(10)

本文由 远方的雪山 作者:萨龙龙 发表,转载请注明来源!

关键词:
LensNews

热评文章

发表回复