我正在使用WordPress插件https://github.com/lesterchan/wp-postratings。 当我访问http://domain.com/wp-admin/edit.php时,它还会显示管理员的评分。 如何从管理员端删除这些评级。
答案 0 :(得分:0)
您可以使用manage_posts_columns过滤器在functions.php文件中使用以下功能。我假设您的自定义帖子类型为“工具”,该列由“评分”引用。如果它们不同,您可以在代码中更改它。
add_filter( 'manage_posts_columns', 'custom_post_columns', 10, 2 );
function custom_post_columns( $columns, $post_type ) {
switch ( $post_type ) {
//assuming the id for the custom post type is 'tools'
case 'tools':
unset(
//I'm using 'ratings' but you'll have to check and see what the name for the column really is.
$columns['ratings']
);
break;
}
return $columns;
}