我只想从标题中删除描述
答案 0 :(得分:1)
为自定义帖子类型创建自定义列及其关联数据的钩子分别为manage_{$post_type}_posts_columns
和manage_{$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”