admin管理员组文章数量:1122832
I need to make right ierarchy. But with my setting I get 404. How I can do that with settings post-type, taxonomies, rewrite-rule? What I need: sitename/media/%posttype% -- sitename/media/recipes sitename/media/%posttype%/%tag% or %category% -- sitename/media/recipes/hot sitename/media/%posttype%/postname -- sitename/media/recipes/hot-chili-sauce
I maked page sitename/media and add the rewrite rule but its not helped and I get problem when add rewrite rule to taxonomy for /media/recipes/category-name
function create_recipe_post_type() {
$labels = array(
'name' => _x( 'Рецепти', 'Тип записів Рецепти', 'root' ),
'singular_name' => __( 'Рецепт', 'root' ),
'menu_name' => __( 'Рецепти', 'root' ),
'all_items' => __( 'Всі рецепти', 'root' ),
'view_item' => __( 'Дивитись рецепт', 'root' ),
'add_new_item' => __( 'Додати новий рецепт', 'root' ),
'add_new' => __( 'Додати новий', 'root' ),
'edit_item' => __( 'Редагувати рецепт', 'root' ),
'update_item' => __( 'Оновити рецепт', 'root' ),
'search_items' => __( 'Шукати рецепт', 'root' ),
'not_found' => __( 'Рецептів не знайдено', 'root' ),
'not_found_in_trash' => __( 'Не знайдено в кошику', 'root' ),
// лейбли дял завантаження медіафайлів
'insert_into_item' => 'Вставити в рецепт',
'uploaded_to_this_item' => 'Завантажено для цього рецепта',
'featured_image' => 'Фото готової страви',
'set_featured_image' => 'Встановити фото страви',
'remove_featured_image' => 'Видалити фото страви',
'use_featured_image' => 'Використати як фото страви',
);
$args = array(
'label' => __( 'recipes', 'root' ),
'description' => __( 'Каталог рецептів', 'root' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', ),
'taxonomies' => array( 'recipe-categories', 'post_tag' ),
'hierarchical' => false,
'rewrite' => array( 'slug' => 'media/recipes' ),
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_admin_bar' => true,
'menu_position' => 2,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
'query_var' => true,
'menu_icon' => 'dashicons-food',
);
register_post_type( 'recipes', $args );
register_taxonomy( 'recipe-categories', array('recipes'), array(
'label' => 'Категорії рецептів',
'labels' => array(
'name' => 'Категорії рецептів',
'singular_name' => 'Категорія',
'search_items' => 'Шукати категорію',
'all_items' => 'Всі категорії',
'parent_item' => 'Батьк. категоря',
'parent_item_colon' => 'Батьк. категоря:',
'edit_item' => 'Редагувати категорію',
'update_item' => 'Оновити категорію',
'add_new_item' => 'Додати категорію',
'new_item_name' => 'Заголовок',
'menu_name' => 'Категорії рецептів',
),
'description' => 'Категорії для рецептів',
'public' => true,
'show_in_nav_menus' => true,
'show_ui' => true,
'show_tagcloud' => false,
'hierarchical' => true,
'rewrite' => array( 'slug' => 'media/recipes/%recipe-categories%', 'hierarchical' => true ),
'show_admin_column' => true,
'show_in_rest' => true,
'publicly_queryable' => true,
)
);
}
add_action( 'init', 'create_recipe_post_type' );
本文标签: Help with right recipe ierarchy post type and taxonomy
版权声明:本文标题:Help with right recipe ierarchy post type and taxonomy 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736308947a1933842.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论