如何在wordpress管理面板上创建新表单?

时间:2012-08-04 14:54:03

标签: wordpress

我想通过管理员在wordoress管理面板上为商店数据创建新表单,例如我有一个学生详细信息,我希望通过管理面板存储。

请让我知道.....

最佳

阿布舍克巴克

1 个答案:

答案 0 :(得分:0)

为什么不创建新的帖子类型? http://codex.wordpress.org/Post_Types

您可以将其设置为不公开显示。你可以这样:

add_action( 'init', 'create_post_type' );
function create_post_type() {
    register_post_type( 'acme_product',
        array(
            'labels' => array(
                'name' => __( 'Products' ),
                'singular_name' => __( 'Product' )
            ),
        'public' => false,
        'has_archive' => true,
        )
    );
}