我正在嘗試構建一個應用程序,該應用程序從用戶獲取2個輸入並將其保存到數據庫。自定義帖子類型
我試圖自定義文章類型,但其概念是外資和困惑,我 - 我不知道我是否應該使用預先存在的字段(標題,內容)或創建字段來存儲數據庫中的輸入。
這裏是我的代碼:
// Register Custom Post Type
function int_init() {
$labels = array(
'name' => 'Stories',
'singular_name' => 'Story',
'menu_name' => 'Story',
'parent_item_colon' => 'Parent Stories:',
'all_items' => 'All Stories',
'view_item' => 'View Story',
'add_new_item' => 'Add new Story',
'add_new' => 'New Story',
'edit_item' => 'Edit Story',
'update_item' => 'Update Story',
'search_items' => 'Search Story',
'not_found' => 'No story found',
'not_found_in_trash' => 'No story found in Trash',
);
$args = array(
'label' => 'int',
'description' => 'INT information pages',
'labels' => $labels,
'supports' => array('title', 'editor',),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_admin_bar' => true,
'menu_position' => 5,
'menu_icon' => '',
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'post',
);
register_post_type('int', $args);
}
// Hook into the 'init' action
add_action('init', 'int_init', 0);
所有這些代碼不會對我來說是顯示標題,並在後端內容領域。我應該只使用標題和內容字段,還是應該創建新字段?我該怎麼做呢?
編輯:每個用戶的內容是唯一的,每個用戶都會被要求輸入兩個字母數字數據每個提交使用使用短代碼創建的表單。我知道短代碼的工作原理,並在過去使用它們。
輸入的這對數據項將被保存到數據庫中,並且需要檢索並公佈在網站的公共端。這對數據項將被檢索和一個頁面對於每個數據對上這樣顯示:
我想吃了花生醬三明治然後喝牛奶一杯。提交的數據顯示爲粗體。數據的檢索和格式化將使用簡碼完成。我不知道如何創建自定義字段來完成這項工作。我瞭解自定義帖子類型如何在基本級別上工作,但我不知道如何使用自定義帖子類型來使我的項目工作。
數據在未登錄網站的用戶的網站的公共一側提交。
爲了回顧我的問題,我不知道如何存儲這對數據。我是否使用預先存在的標題和內容字段或創建不同的內容?
你也許會得到答案,在[ Wordpress.SE](http://wordpress.stackexchange.com) – HamZa
剛剛編輯我的答案,由你的編輯驅動...仍然我不知道我是否真的明白你想達到什麼。 – MrMerrick