#php #wordpress #custom-post-type
Вопрос:
У меня есть пользовательский тип записи под названием How to videos
. Вот как я это зарегистрировал:
register_post_type(
'How to videos',
theme_build_post_args(
// $slug, $singular, $plural
'how-to-videos', 'How to videos', 'How to videos',
array(
'menu_icon' => 'dashicons-video-alt3',
'menu_position' => 20,
'has_archive' => true,
'public' => false,
'supports' => array('title','thumbnail'),
)
)
);
Я создал файл с именем archive-how-to-videos.php
, который в настоящее время выглядит следующим образом:
<body class="listingPage">
<?php get_header(); ?>
this is a test
<?php get_footer(); ?>
</body>
Я несколько раз сбрасывал постоянные ссылки через настройки > постоянные ссылки на панели управления WordPress. Но всякий раз, когда я пытаюсь получить доступ /how-to-videos
, содержимое отображается не так, как определено в файле? Например, у меня в файле есть «это тест» archive-how-to-videos.php
, но я не вижу его на странице (даже при проверке кода на странице).
В настоящее время он показывает только верхний и нижний колонтитулы, ничего определенного между ними?
theme_build_post_args
функция ниже:
function theme_build_post_args( $slug, $singular = 'Post', $plural = 'Posts', $args = array() ){
$builder = new theme_PTTaxArgBuilder;
return $builder->buildPostArgs($slug, $singular, $plural, $args);
}
Ответ №1:
Возможно, тип сообщения не был должным образом зарегистрирован. Где вы взяли функцию theme_build_post_args?
Имя типа записи должно содержать только строчные символы, поэтому «Как использовать видео» недопустимо или его следует использовать в качестве метки типа записи. Правильное название типа сообщения или сообщения должно быть «инструкции к видео».
$post_type
(string) (Required) Post type key. Must not exceed 20 characters and may only contain lowercase alphanumeric characters, dashes, and
подчеркивает. См. раздел sanitize_key().
Вы можете найти шаблон register_post_type в документации.
// https://developer.wordpress.org/reference/functions/register_post_type/
Пример:
function wpdocs_kantbtrue_init() {
$labels = array(
'name' => _x( 'Recipes', 'Post type general name', 'recipe' ),
'singular_name' => _x( 'Recipe', 'Post type singular name', 'recipe' ),
'menu_name' => _x( 'Recipes', 'Admin Menu text', 'recipe' ),
'name_admin_bar' => _x( 'Recipe', 'Add New on Toolbar', 'recipe' ),
'add_new' => __( 'Add New', 'recipe' ),
'add_new_item' => __( 'Add New recipe', 'recipe' ),
'new_item' => __( 'New recipe', 'recipe' ),
'edit_item' => __( 'Edit recipe', 'recipe' ),
'view_item' => __( 'View recipe', 'recipe' ),
'all_items' => __( 'All recipes', 'recipe' ),
'search_items' => __( 'Search recipes', 'recipe' ),
'parent_item_colon' => __( 'Parent recipes:', 'recipe' ),
'not_found' => __( 'No recipes found.', 'recipe' ),
'not_found_in_trash' => __( 'No recipes found in Trash.', 'recipe' ),
'featured_image' => _x( 'Recipe Cover Image', 'Overrides the “Featured Image” phrase for this post type. Added in 4.3', 'recipe' ),
'set_featured_image' => _x( 'Set cover image', 'Overrides the “Set featured image” phrase for this post type. Added in 4.3', 'recipe' ),
'remove_featured_image' => _x( 'Remove cover image', 'Overrides the “Remove featured image” phrase for this post type. Added in 4.3', 'recipe' ),
'use_featured_image' => _x( 'Use as cover image', 'Overrides the “Use as featured image” phrase for this post type. Added in 4.3', 'recipe' ),
'archives' => _x( 'Recipe archives', 'The post type archive label used in nav menus. Default “Post Archives”. Added in 4.4', 'recipe' ),
'insert_into_item' => _x( 'Insert into recipe', 'Overrides the “Insert into post”/”Insert into page” phrase (used when inserting media into a post). Added in 4.4', 'recipe' ),
'uploaded_to_this_item' => _x( 'Uploaded to this recipe', 'Overrides the “Uploaded to this post”/”Uploaded to this page” phrase (used when viewing media attached to a post). Added in 4.4', 'recipe' ),
'filter_items_list' => _x( 'Filter recipes list', 'Screen reader text for the filter links heading on the post type listing screen. Default “Filter posts list”/”Filter pages list”. Added in 4.4', 'recipe' ),
'items_list_navigation' => _x( 'Recipes list navigation', 'Screen reader text for the pagination heading on the post type listing screen. Default “Posts list navigation”/”Pages list navigation”. Added in 4.4', 'recipe' ),
'items_list' => _x( 'Recipes list', 'Screen reader text for the items list heading on the post type listing screen. Default “Posts list”/”Pages list”. Added in 4.4', 'recipe' ),
);
$args = array(
'labels' => $labels,
'description' => 'Recipe custom post type.',
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'recipe' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => 20,
'supports' => array( 'title', 'editor', 'author', 'thumbnail' ),
'taxonomies' => array( 'category', 'post_tag' ),
'show_in_rest' => true
);
register_post_type( 'Recipe', $args );
}
add_action( 'init', 'wpdocs_kantbtrue_init' );
— ИЛИ —
Вы также можете использовать сторонний плагин, такой как CPT UI.