Jump to content
  • 0

Фильтр по меткам


VIVA
 Share

Question

Люди, кто сталкивался с проблемой когда не работает поиск по слагам?

Я использую код 
 

<?php
global $post;

$tmp_post = $post;
$args = array( 'posts_per_page' => 3, 'offset'=> 0, 'category' => 2 );
$myposts = get_posts( $args );
foreach( $myposts as $post ){ setup_postdata($post);
?>

<div class="col-md-12">
  <div class="main-content-projection">

    <?php the_post_thumbnail(); ?>

    <h3><?php the_title(); ?></h3>

    <?php the_tags(''); ?>

    <?php the_excerpt(); ?>

    <div class="main-content-projection-details">
      <a href="<?php the_permalink(); ?>">
        подробнее...
      </a>
    </div>

  </div>
</div>

<?php
} 

$post = $tmp_post;
?>

Т.е. по факту я вывожу первые 3 сообщения из категории (в другом месте на странице я вывожу следующие 3 сообщения). При этом когда я нажимаю на метку, то фильтр по аналогичным меткам не происходит (скрин http://prntscr.com/cdxfe1).

Но если вывости на страницу все записи, без ограничения первые 3 или последние 3, то фильтр срабатывает нормально. Через команду query_posts все происходит аналогично.

Ребят, может кто сталкивался с такой проблемой или есть варианты как ее решить? Напишите, пожалуйста, готов попробовать все методы.
 

Edited by VIVA
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