나는이 장소가 내가 겪고있는 문제에 대해 많은 인터넷 검색을 통해 과거에 좋은 정보원이라는 것을 알았습니다. 내 질문은 WordPress에서 사용하는 자세한 다시 쓰기 규칙과 관련이 있습니다.
project 라는 사용자 지정 게시물 유형을 설정했으며 projects 라는 사용자 지정 분류법을 등록했습니다 . 다시 쓰기 규칙으로 인해 충돌이 발생하는 다시 쓰기 슬러그 옵션을 제외하고 모든 것이 잘 작동합니다.
기본적으로 이것은 내가 달성하고자하는 구조입니다.
example.com/work/%taxonomy%/%post_name%/
(게시물)example.com/work/%taxonomy%/
(특정 분류 용어에 속하는 게시물 목록)example.com/work/
(taxonomy.php가 포함 된 page-work.php로 이동하여 해당 분류와 관련된 모든 게시물을 나열합니다)
여기 내가 지금까지 가지고있는 코드가 있지만 WP_Rewrite 규칙을 작성하는 데 도움이 필요합니다.
$labels = array(
'name' => _x('Projects', 'post type general name'),
'singular_name' => _x('Project', 'post type singular name'),
'add_new' => _x('Add New', 'project item'),
'add_new_item' => __('Add New Project'),
'edit_item' => __('Edit Project'),
'new_item' => __('New Project'),
'view_item' => __('View Project'),
'search_items' => __('Search Projects'),
'not_found' => __('Nothing found'),
'not_found_in_trash' => __('Nothing found in Trash'),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'hierarchical' => true,
'rewrite' => array('slug'=>'work', 'with_front'=>false),
'show_ui' => true,
'_builtin' => false, // It's a custom post type, not built in!
'capability_type' => 'post',
'query_var' => "project", // This goes to the WP_Query schema
'menu_position' => null,
'supports' => array('title','editor','thumbnail', 'comments', 'author', 'excerpt')
);
register_post_type('project' , $args);
// Showcase Taxonomy
register_taxonomy('projects', array('project'), array(
'public' => true,
'hierarchical' => true,
'label' => 'Project Categories',
'singular_label' => 'Project Category',
'query_var' => true,
'rewrite' => array('slug'=>'work', 'with_front'=>false, 'hierarchical'=>true)
)
);
도와 주셔서 감사합니다! :-)
1
codex.wordpress.org/Class_Reference/WP_Rewrite 및 codex.wordpress.org/Rewrite_API/add_rewrite_rule 및 codex.wordpress.org/Rewrite_API/add_rewrite_tag
—
chrisguitarguy
@ChristopherDavis 감사합니다. 조금 더 자세히 살펴보고 어떻게 진행되는지 보겠습니다.
—
matt_d_rat 2016 년