Jump to content
  • 0

Кастомные записи в адмике


vitaxastifler
 Share

Question

Нашел я статью,как все это сделать без плагинов,все сделал,но оно не выводиться на странице.

Зато в стандартных "Записях" все выводиться.

И что ж ему не так?
Вот мой код:

Это я добавил в function.php

if ( ! function_exists( 'red_book_cp' ) ) { // Опишем требуемый функционал    function red_book_cp() {         $labels = array(            'name'                => _x( 'Красная книга', 'Post Type General Name', 'red_book' ),            'singular_name'       => _x( 'Красная книга', 'Post Type Singular Name', 'red_book' ),            'menu_name'           => __( 'Красная Книга', 'red_book' ),            'parent_item_colon'   => __( 'Родительский:', 'red_book' ),            'all_items'           => __( 'Все записи', 'red_book' ),            'view_item'           => __( 'Просмотреть', 'red_book' ),            'add_new_item'        => __( 'Добавить новую запись в Красную Книгу', 'red_book' ),            'add_new'             => __( 'Добавить новую', 'red_book' ),            'edit_item'           => __( 'Редактировать запись', 'red_book' ),            'update_item'         => __( 'Обновить запись', 'red_book' ),            'search_items'        => __( 'Найти запись', 'red_book' ),            'not_found'           => __( 'Не найдено', 'red_book' ),            'not_found_in_trash'  => __( 'Не найдено в корзине', 'red_book' ),        );        $args = array(            'labels'              => $labels,            'supports'            => array( 'title', 'editor', 'excerpt', ),            'taxonomies'          => array( 'red_book_tax' ), // категории, которые мы создадим ниже            'public'              => true,            'menu_position'       => 5,            'menu_icon'           => 'dashicons-book',        );        register_post_type( 'red_book', $args );     }     add_action( 'init', 'red_book_cp', 0 ); // инициализируем }if ( ! function_exists( 'red_book_tax' ) ) { // Опишем требуемый функционал    function red_book_tax() {         $labels = array(            'name'                       => _x( 'Категории Красной книги', 'Taxonomy General Name', 'red_book' ),            'singular_name'              => _x( 'Категория Красной книги', 'Taxonomy Singular Name', 'red_book' ),            'menu_name'                  => __( 'Категории', 'red_book' ),            'all_items'                  => __( 'Категории', 'red_book' ),            'parent_item'                => __( 'Родительская категория Книги', 'red_book' ),            'parent_item_colon'          => __( 'Родительская категория Книги:', 'red_book' ),            'new_item_name'              => __( 'Новая категория', 'red_book' ),            'add_new_item'               => __( 'Добавить новую категорию', 'red_book' ),            'edit_item'                  => __( 'Редактировать категорию', 'red_book' ),            'update_item'                => __( 'Обновить категорию', 'red_book' ),            'search_items'               => __( 'Найти', 'red_book' ),            'add_or_remove_items'        => __( 'Добавить или удалить категорию', 'red_book' ),            'choose_from_most_used'      => __( 'Поиск среди популярных', 'red_book' ),            'not_found'                  => __( 'Не найдено', 'red_book' ),        );        $args = array(            'labels'                     => $labels,            'hierarchical'               => true,            'public'                     => true,        );        register_taxonomy( 'red_book_tax', array( 'red_book' ), $args );     }     add_action( 'init', 'red_book_tax', 0 ); // инициализируем }

А здесь мой собственно шаблон для вывода записи из рубрики по id.

<?php/*Template Name: Інформаційно-аналітичні матеріали * To change this template, choose Tools | Templates * and open the template in the editor. */get_header(); ?><div style="line-height: 25px;margin-top: 5px;">    <div class="content-headline">        <h1 class="entry-headline"><span class="entry-headline-text"><?php the_title(); ?></span></h1>        <?php maidenhair_get_breadcrumb(); ?>    </div>    <?php $posts = get_posts ("category=14&orderby=date&numberposts=5"); ?>    <?php if ($posts) : ?><?php echo category_description(0);?>        <?php foreach ($posts as $post) : setup_postdata ($post); ?>                <ul> <a href="<?php the_permalink() ?>" rel="bookmark"><?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?><div class="silki"><?php the_title(); ?></div>  </a></ul>        <?php endforeach; ?>    <?php endif; ?>    <?php get_footer(); ?>
Edited by vitaxastifler
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy