2

我想在 wordores 管理面板上创建新表单,以便管理员存储数据,例如我有一个学生详细信息,我想通过管理面板存储。

请告诉我.....

最好的阿布舍克

4

1 回答 1

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,
        )
    );
} 
于 2013-07-01T15:06:08.520 回答