如何从管理面板中删除帖子类型列名称中的标题帖子描述

时间:2017-06-30 06:43:18

标签: wordpress post meta-tags

here

我只想从标题中删除描述

2 个答案:

答案 0 :(得分:1)

为自定义帖子类型创建自定义列及其关联数据的钩子分别为manage_{$post_type}_posts_columnsmanage_{$post_type}_posts_custom_column,其中{$post_type}是自定义帖子类型的名称。

这是示例

使用manage_{$post_type}_posts_custom_column

覆盖您的列值
add_action( 'manage_{$post_type}_posts_custom_column' , 'custom_cpost_column', 99, 2 );
function custom_cpost_column( $column, $post_id ) {
    switch ( $column ) {

        case 'new-title'//new-title=your column slug :
            echo get_the_title( $post_id  );
            break;
    }
}

答案 1 :(得分:0)

add_filter( 'get_the_excerpt', function ( $post_excerpt, $post ){
            global $pagenow;

            $custom_post_type = 'my_custom_post_type';

            if($post->post_type == $custom_post_type && $pagenow == 'edit.php'){
                return '';
            }else{
                return $post_excerpt;
            }
        }, 10, 2 );

用您的帖子类型替换“ my_custom_post_type”