假设,我想把category这个页面,变成和page页面一样,可以加上详细内容。应该怎么修改
baidu了好几个小时没答案,google了好几个小时,找到一个答案,但是没看明白怎么操作。- function filter_category_descriptions_in_admin( $terms ) {
- global $current_screen;
- if ( empty( $current_screen ) || 'edit-category' != $current_screen->id )
- return $terms;
- foreach ( $terms as $key => $term )
- $terms[ $key ]->description = apply_filters( 'category_description', $term->description, $term );
- return $terms;
- }
- add_filter( 'get_terms' , 'filter_category_descriptions_in_admin' );
复制代码 有没有高手解答一下?
|