为wordpress后台文章列表添加一个分类

wordpress模板制作实用代码,为wordpress后台文章列表页添加一个分类,以最后修改时间为例。 // Add the custom column to the post type add_filter( 'manage_pages_columns', 'itsg_add_custom_column' ); add_filter( 'manage_posts_columns', 'itsg_add_custom_column' ); function itsg_add_custom_column( $c…