自定义帖子类型‘Show on Screen’不适用于数字

时间:2013-01-20 作者:Ahmad Ajmi

我想在管理区域中显示更多自定义帖子类型,但当我通过在屏幕选项中添加一个数字并单击应用来增加帖子数量时,什么都没有发生。然而,这适用于正常的帖子。

我的自定义帖子代码:

// Register Post Type    
add_action( \'init\', \'create_tests_type\' );
function create_tests_type() {
    $labels = array(
        \'name\'               => _x( \'Test\', \'post type general name\' ),
        \'singular_name\'      => _x( \'Test\', \'post type singular name\' ),
        \'add_new\'            => _x( \'Add New\', \'book\' ),
        \'add_new_item\'       => __( \'Add New Test\' ),
        \'edit_item\'          => __( \'Edit Tests\' ),
        \'new_item\'           => __( \'New Tests\' ),
        \'all_items\'          => __( \'All Tests\' ),
        \'view_item\'          => __( \'View Test\' ),
        \'search_items\'       => __( \'Search Tests\' ),
        \'not_found\'          => __( \'No Tests found\' ),
        \'not_found_in_trash\' => __( \'No Tests found in the Trash\' ), 
        \'parent_item_colon\'  => \'\',
        \'menu_name\'          => \'Tests\'
    );
    $args = array(
        \'labels\'        => $labels,
        \'description\'   => \'Holds our Tests data\',
        \'public\'        => true,
        \'menu_position\' => 5,
        \'supports\'      => array( \'title\', \'editor\', \'thumbnail\', \'excerpt\', \'comments\' ),
        \'has_archive\'   => true,
    );
    register_post_type( \'test\', $args );    
}
我已经搜索了很多来解决这个问题,但没有找到正确的解决方案。

1 个回复
SO网友:Christian Rios

我使用了您的代码,但无法重新创建错误-在新安装的3.5.1上,它似乎可以正常工作。

这是否也适用于其他屏幕选项,特别是要显示的列的复选框(commentsdates) ?

如果适用的话,试着停用你的插件,看看这是否能解决问题——这是我目前唯一能提供的。

结束

相关推荐