Jump to content
  • 0

Свои записи в админке WordPress


vitaxastifler
 Share

Question

9 answers to this question

Recommended Posts

  • 0

ishurgaya пытаюсь,не выводиться(

Вот пишу я в стандарте,все работает,а то что я написал плагином не хочет(

Все тоже самое,а записи не выводятся.
Может что то в коде?

<?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=10&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

нужный тип записи создали, в настройках плагина? тип записи в админке показывается отдельным пунктом , как "Красная книга"?

Да,все есть!!!

Edited by vitaxastifler
Link to comment
Share on other sites

  • 0

в function.php прописали код который вам выдал плагин?

 

Подгрузить записи можно так:

$args = [    'posts_per_page' => 100,    'orderby' => 'menu_order',    'order' => 'ASC',    'post_type' => 'тип записи, который создали на латинском(как в настройках плагина)',    'post_status' => 'publish',    'suppress_filters' => true];$posts = get_posts($args);

и дальше как обычно в цикле выводим записи foreach ($posts as $post)

Link to comment
Share on other sites

  • 0

ishurgaya какой код? оО

Мне плагин ничего не выдавал.

заходите в настройки плагина , а точнее в Manage Custom Post Types.

 

и там будет показан тип записи который создали.

Должны быть ссылочки Delete / Edit / Get Code

 

Жмем Get Code и получаем код и копируем в function.php в вашей теме.

 

После того как создали нужный тип записи и добавили код,  плагин можно выключить (по сути он только генерирует код и создает тип записи)

Edited by ishurgaya
Link to comment
Share on other sites

  • 0

Вот что я делал и нихрена не работает(((

1.Добавил,прикрепил к рубрике,взял код и вставил в function.php ,зашел на сайт и там пусто.
Прикрепляю к рубрике потому что у меня вывод идет из нее по шаблону.В стандарте все отлично работает,а по плагину не хочет.

fc9b4d9dda394a63a804c31f35b52c80.png6593f57657045e99685fad77137c5946.png00497a45160d6b2f7edec81107cc0120.png9265ea18ea325f1c66c414e6ebdc2bd5.png6cfbe74614d1db71ab8f561266644c90.png

Edited by vitaxastifler
Link to comment
Share on other sites

  • 0

попробуй так создай, файл page-test.php и скопируй его в тему сайта на вордпресс

 

и выводи в нем записи ,примерно так (тип записи на скрине у тебя tests)

 

$args = [
'posts_per_page' => 100,
'orderby' => 'menu_order',
'order' => 'ASC',
'post_type' => 'тип записи, который создали на латинском(как в настройках плагина)',
'post_status' => 'publish',
'suppress_filters' => true
];

$posts = get_posts($args);

 

и выводи в цикле.

 

потом попробуй открыть в браузере http://твой_домен/test (потому что page-test.php)

 

 

еще может это поможет: http://wpincode.com/kak-ispolzovat-proizvolnye-tipy-zapisej-v-wordpress-3-x/

Edited by ishurgaya
Link to comment
Share on other sites

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