File: /home/rasad/public_html/wp-content/themes/ofogh/inc/cat.php
<?php global $qaleb;?>
<div class="tiitle">
<h3><?php echo $qaleb['last-title']; ?></h3>
<?php if($qaleb['last-lt']=='1'){?><a href="<?php echo $qaleb['last-ml']; ?>"><?php echo $qaleb['last-mt']; ?></a><?php } ?>
</div>
<?php
if($qaleb['last-content']=='1'){
$arggs = array(
'post_type' => 'post',
'posts_per_page' => $qaleb['last-count'],
);
}else if($qaleb['last-content']=='2'){
$arggs = array(
'post_type' => 'post',
'posts_per_page' => $qaleb['last-count'],
'orderby' => 'rand'
);
}else if($qaleb['last-content']=='3'){
$arggs = array(
'post_type' => 'post',
'posts_per_page' => $qaleb['last-count'],
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'term_id',
'terms' => $qaleb['last-type-select'],
),
),
);
}
query_posts($arggs);
if(have_posts()) : while(have_posts()) : the_post(); ?>
<?php get_template_part('inc/loop'); ?>
<?php endwhile; endif; wp_reset_query(); ?>