2013-09-21 2 views
0

나는 wordpress에있는 주제를 창조하는 것을 시도하고있다 그리고 나는 포스트 페이지와 동일을 행동 할 포트홀리로이라고 지명 된 다른 페이지 그러나 "포스트"를 추가 할 필요가있다 그러나/blog/post-title이 아닌/portfolio/post-title의 링크를 사용하십시오. 아마 이것에 대한 튜토리얼이 있지만 내가 뭘하는지 구체적으로 찾을 수 없습니다.Wordpress admin 스크린에 여분 메뉴를 추가하는 방법

답변

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'); 

자료 :

당신이 조사해야하는 기능은 "사용자 정의 포스트 유형"

예입니다