Jump to content
  • 0

custom post types в wordpress


vitaxastifler
 Share

Question

Ребятки,нужен совет.

Я создал кастомный тип меню "Новости" плагином "Types"

Теперь у меня будет еще очень много кастомов типа "Анонсы", "Архивы" "Каталоги" и тд...

Можно ли сделать все одним файлом,а не создавать еще штук 20 файлов?
Вот мой код!

<?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>    <div id="primary" class="site-content">        <div id="content" role="main">            <?php $loop = new WP_Query(				array( 'post_type' => 'news',								'posts_per_page' => 0,								'productgroup' => $wp_query->query_vars['productgroup']								// 'tag' => $wp_query->query_vars['tag']								)								);								//echo $wp_query->query_vars['productgroup'];								?><!--pre><?php print_r( $wp_query->query_vars) ?></pre--><?php            ?>            <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>                <li class="map1">                    <h2><?php the_title(); ?></h2>                    <?php the_post_thumbnail(); ?>                    <p><?php the_content(); ?>                        <a href="<?php the_permalink(); ?>">                            <?php                            if ( is_user_logged_in() ) {                                echo '<span class="mayak-more">Детальніше »</span>';}?> </a>                    </p>                </li>            <?php endwhile; ?>        </div><!-- #content -->    </div><!-- #primary --><?php get_footer(); ?><?php
Edited by vitaxastifler
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Все смешалось - люди, кони. Я так понимаю, это попытка вывести новости на странице? Для этого можно у post_type включить опцию has_archive, тогда по ссылке /{slug}/ будут выводиться посты этого типа. В данном случае ссылка наверное будет выглядеть как /news/

 

По умолчанию будут использоваться шаблоны в таком порядке:

index.php > archive.php > archive-{posttype}.php

 

Если нужно обязательно использовать кастомный шаблон страницы, то добавляй поле, в котором пользователь будет выбирать какой именно контент будет выводиться. Например, выпадающий список: новости, каталоги и тд

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