Jump to content
  • 0

Вывод постов определенной категории (заголовок и читать далее)


sigma77
 Share

Question

Всем привет,

Пытаюсь сверстать свою тему на WP, возникла такая проблема.

Сам макет - http://fainitskaya.ru/portfolio/six-studios/demo.php

Создала 3 категории:

  • Latest Projects - projects
  • Our Services - services
  • Recent Entries - recent

Теперь пытаюсь вывести в первой колонке посты, относящиеся только к этой категории

$my_query = new WP_Query('category_name=services&showposts=3');

if ($my_query->have_posts()) {
while ($my_query->have_posts()) {
echo '<article class="entry">';
echo '<h3 class="sub_heading">';
the_title();
echo '</h3>';
$my_query->the_post();
the_content('Continue Reading');
echo '</article>';
}
}

Проблема возникает с the_title() и the_content('Continue Reading'). Я как понимаю они берутся из всего массива постов?

Получается такие проблемы:

- Если все посты одной категории, то выводится одинаковый заголовок у первой и второй записи.

- Если есть посты других категорий, то их заголовки становятся заголовками постов.

Так вот, как их также отфильтровать?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

А если так?


<?php
$args = array( 'numberposts' => 3, 'category' => 1 );
$myposts = get_posts($args);
foreach($myposts as $post_arr):setup_postdata($post_arr); ?>
<article class="entry">
<h3 class="sub_heading"><?php echo $post_arr->post_title; ?></h3>
<?php the_content('Continue Reading'); ?>
</article>
<?php endforeach; ?>

  • Like 1
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