_posts_columns', 'set_custom_edit__columns' ); function set_custom_edit__columns($columns) { unset( $columns['author'] ); $columns['column_name'] = __( 'Column name', 'text-domain' ); return $columns; } // Add the data to the custom columns for the post type: add_action( 'manage__posts_custom_column' , 'custom__column', 10, 2 ); function custom__column( $column, $post_id ) { switch ( $column ) { case 'column_name':{ // Variables echo "TEXT" break; } } }