Ответы в темах

Просмотр 1 ответа (всего 1)
  • Почти то, что надо! Только этот код выводит посты из всех категорий за 2015 год.
    Может кто-то сможет подсказать, как доделать..

    <?php
    //for each category, show all posts
    $cat_args=array(
      'orderby' => 'name',
      'order' => 'ASC'
       );
    $categories=get_categories($cat_args);
      foreach($categories as $category) {
        $args=array(
          'showposts' => -1,
          'category__in' => array($category->term_id),
    	  'year' => 2015,
    	  'caller_get_posts'=>1
        );
        $posts=get_posts($args);
          if ($posts) {
            echo '<p>Категория: <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "Посмотреть все посты в категории %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> ';
            foreach($posts as $post) {
              setup_postdata($post); ?>
              <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Прямая ссылка: <?php the_title_attribute(); ?>"><?php the_title(); ?></a><?php the_content(); ?></p>
              <?php
            }
          }
        }
    ?>

Просмотр 1 ответа (всего 1)