S
S
Sergey750il2016-10-18 23:05:53
CMS
Sergey750il, 2016-10-18 23:05:53

How to display a single record of an arbitrary type?

Good day. How to display a single record of an arbitrary type? The custom-type was created fine, but when I created the single-authors.php file to display a single post of a custom type, the main page template is displayed.

add_action('init', 'register_post_types');
function register_post_types(){
  register_post_type('authors', array(
    'label'  => null,
    'labels' => array(
      'name'               => 'authors', // основное название для типа записи
      'singular_name'      => 'authors', // название для одной записи этого типа
      'add_new'            => 'Добавить автора', // для добавления новой записи
      'add_new_item'       => 'Добавление автора', // заголовка у вновь создаваемой записи в админ-панели.
      'edit_item'          => 'Редактирование автора', // для редактирования типа записи
      'new_item'           => 'Новый автор', // текст новой записи
      'view_item'          => 'Смотреть автора', // для просмотра записи этого типа.
      'search_items'       => 'Искать автора', // для поиска по этим типам записи
      'not_found'          => 'Не найдено', // если в результате поиска ничего не было найдено
      'not_found_in_trash' => 'Не найдено в корзине', // если не было найдено в корзине
      'parent_item_colon'  => '', // для родителей (у древовидных типов)
      'menu_name'          => 'Authors', // название меню
    ),
    'description'         => '',
    'public'              => false,
    'publicly_queryable'  => null,
    'exclude_from_search' => null,
    'show_ui'             => true,
    'show_in_menu'        => true, // показывать ли в меню адмнки
    'menu_position'       => null,
    'menu_icon'           => null, 
    //'capability_type'   => 'post',
    //'capabilities'      => 'post', // массив дополнительных прав для этого типа записи
    //'map_meta_cap'      => null, // Ставим true чтобы включить дефолтный обработчик специальных прав
    'hierarchical'        => false,
    'supports'            => array('title','editor','thumbnail','revisions','page-attributes','post-formats'), // 'title','editor','author','thumbnail','excerpt','trackbacks','custom-fields','comments','revisions','page-attributes','post-formats'
    'taxonomies'          => array(),
    'has_archive'         => false,
    'rewrite'             => true,
    'query_var'           => true,
    'show_in_nav_menus'   => null,
  ) );
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Igor Vorotnev, 2016-10-19
@HeadOnFire

Settings - Permalinks, update permalinks. Yes, and how are you trying to output? With the properties 'public' => false and 'publicly_queryable' => null, WordPress doesn't see it in WP_Query, so it's invisible to template_include() as well.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question