2
我想通過管理員爲商店數據在wordoress管理面板上創建新表單,例如,我有一個學生的詳細信息,我希望通過管理面板進行存儲。如何在WordPress管理面板上創建新表單?
請讓我知道.....
最佳 阿布舍克
我想通過管理員爲商店數據在wordoress管理面板上創建新表單,例如,我有一個學生的詳細信息,我希望通過管理面板進行存儲。如何在WordPress管理面板上創建新表單?
請讓我知道.....
最佳 阿布舍克
你爲什麼不創建一個新的職位類型? 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,
)
);
}