costaza
11/27/2017 - 4:20 PM

[posts query] #php

[posts query] #php

<div class="homelatest">
<h2>אירועים אחרונים בנושא <?php the_title(); ?></h2>
<?php $term = get_term(get_field('gal_cat'), 'category');$r = new WP_Query(array('posts_per_page' => 6,'orderby' => 'rand','post_type' => 'gallery', 'post__not_in' => array( $post ->ID ), 'category_name' => $term->name));if ($r->have_posts()) :?>
<?php while ($r->have_posts()) : $r->the_post(); ?>
<a href="<?php the_permalink() ?>">
<?php echo get_the_post_thumbnail($r->ID, 'thumbnail');?>
<span><?php the_date(); ?></span>
<b><?php if (get_the_title() ) the_title(); else the_ID(); ?></b>
</a>
<?php endwhile; ?>
<?php wp_reset_query();endif;?>
</div>