Skip to content

Instantly share code, notes, and snippets.

@suboorkhan
Forked from pagemashine/wp_query_entry
Created September 17, 2017 10:38
Show Gist options
  • Save suboorkhan/9990c15827f3bda157e71e5db9c8b941 to your computer and use it in GitHub Desktop.
Save suboorkhan/9990c15827f3bda157e71e5db9c8b941 to your computer and use it in GitHub Desktop.
Вывод записей из определенной категории
<?php /* template name: аксессуары для мобильных устройств */ ?>
<?php get_header(); ?>
<div id="container" class="right_container">
<div id="content" class="content" role="main">
<h1 class="page-title">аксессуары для мобильных устройств</h1>
<!-- начинается петля -->
<?php $acsessuar = new wp_query( array( 'post_type' => 'acsessuar', 'category_name' => 'r_portfolio', 'posts_per_page' => 24 ) ); ?>
<?php while ( $acsessuar->have_posts() ) : $acsessuar->the_post(); ?>
<div id="post-<?php the_id(); ?>" <?php post_class(); ?>>
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) : ?>
<a class="post_thumbnail" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" alt="">
<?php the_post_thumbnail(array( 234,124)); ?>
</a>
<?php endif; ?>
<a href="<?php the_permalink() ?>">
<?php the_title(); ?>
</a>
</div>
<!-- post -->
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<!-- заканчивается петля -->
</div>
<!-- #content -->
</div>
<!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment