wordpress 后台 tag 添加列

来源:互联网 发布:淘宝介入卖家没有凭证 编辑:程序博客网 时间:2024/05/06 10:15
/* add tag column--------------------------------------------------------------------------------------------------------------*/add_filter('manage_edit-post_tag_columns', 'add_post_tag_columns');function add_post_tag_columns($columns){    $columns['title'] = 'title';    return $columns;}add_filter( 'manage_post_tag_custom_column' , 'my_tag_column' , 10 , 3 );function my_tag_column( $out , $name , $term_id ){if ($name == 'title') {echo get_option($term_id.',title');}}add_filter( 'manage_edit-post_tag_sortable_columns', 'bs_tag_sortable_columns' );function bs_tag_sortable_columns( $columns ) {  $columns['title'] = 'title';  return $columns;}

0 0
原创粉丝点击