2013-09-21 62 views
0

我想在wordpress中創建一個主題,我需要添加下它說'帖子'的另一個頁面名爲投資組合,這將行事相同的職位頁面,但使用/ portfolio/post-title鏈接而不是/ blog/post-title。有可能是這個教程,但我無法找到任何具體的我在做什麼。如何添加一個額外的菜單WordPress的管理屏幕

回答

0

是的,這裏有幾千個教程,如果不是數百萬。我假設你沒有嘗試過很多?你應該考慮的功能是 「自定義文章類型」

例子:

function codex_custom_init() { 
    $labels = array(
    'name' => 'Books', 
    'singular_name' => 'Book', 
    'add_new' => 'Add New', 
    'add_new_item' => 'Add New Book', 
    'edit_item' => 'Edit Book', 
    'new_item' => 'New Book', 
    'all_items' => 'All Books', 
    'view_item' => 'View Book', 
    'search_items' => 'Search Books', 
    'not_found' => 'No books found', 
    'not_found_in_trash' => 'No books found in Trash', 
    'parent_item_colon' => '', 
    'menu_name' => 'Books' 
); 

    $args = array(
    'labels' => $labels, 
    'public' => true, 
    'publicly_queryable' => true, 
    'show_ui' => true, 
    'show_in_menu' => true, 
    'query_var' => true, 
    'rewrite' => array('slug' => 'book'), 
    'capability_type' => 'post', 
    'has_archive' => true, 
    'hierarchical' => false, 
    'menu_position' => null, 
    'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments') 
); 

    register_post_type('book', $args); 
} 
add_action('init', 'codex_custom_init'); 

資源:

相關問題