保存帖子时Wordpress自定义帖子插件空白屏幕

时间:2013-10-14 15:52:41

标签: php wordpress

**编辑**

我删除了解决问题的?>后出现的一些空格。

**

我为自定义帖子创建了一个简单的插件,当我在自定义帖子编辑器中保存或更新帖子而不是恢复到帖子编辑器(如普通的Wordpress帖子)时,屏幕变为空白。它确实更新了帖子,没问题。

是否有一个我忘记包含在我的代码中的选项:

<?php

add_action( 'init', 'packages_post' );

function packages_post() {
  register_post_type( 'packages',
    array(
        'labels' => array(
            'name' => 'Packages',
            'singular_name' => 'Packages',
            'add_new' => 'Add New',
            'add_new_item' => 'Add New Package',
            'edit' => 'Edit',
            'edit_item' => 'Edit Package',
            'new_item' => 'New Package',
            'view' => 'View',
            'view_item' => 'View Package',
            'search_items' => 'Search Package',
            'not_found' => 'No Packages found',
            'not_found_in_trash' => 'No Packages found in Trash',
            'parent' => 'Parent Package'
        ),

        'public' => true,
        'menu_position' => 15,
        'supports' => array( 'title', 'editor', 'comments', 'thumbnail', 'custom-fields' ),
        'taxonomies' => array( '' ),
        'menu_icon' => plugins_url( '/menu-logo.png', __FILE__ ),
        'has_archive' => false
    )
);
}

?>

1 个答案:

答案 0 :(得分:2)

在php文件的末尾检查所有php文件的空白区域。

即。

);
}

?>         

?>后面有空格/新中断(在我的例子中)。您很可能在正在使用/包含的随机.php文件中有一些。