سلام
مشکل من اینه که نمی دونم تعداد مطالب مرتبط رو از 4 تا به تعداد بیشتری تغییر بدم
ممنون میشم کمکم کنید
نمونه مطالب مرتبط : namakstan
کد مطالب مرتبط
<?php $tags = get_the_tags(); ?>
<?php if($tags): ?>
<?php $related = get_related_posts($post->ID, $tags); ?>
<?php if($related->have_posts() && $related->found_posts >= 2 && get_option('pyre_related') == 'On'): ?>
<div class='homepage-widget'>
<div class="block full">
<h3>مطالب مرتبط <span class="arrows">»</span></h3>
<?php while($related->have_posts()): $related->the_post(); ?>
<?php if(has_post_thumbnail()): ?>
<?php
if(has_post_format('video') || has_post_format('audio') || has_post_format('gallery')) {
$icon = '<span class="' . get_post_format($post->ID) . '-icon"></span>';
} else {
$icon = '';
}
?>
<?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'related-thumb'); ?>
<div class="related-item">
<?php echo $icon; ?><a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><img src="<?php echo $image[0]; ?>" alt="<?php the_title(); ?>" width='134' height='90' /></a>
<h2><a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><?php the_title(); ?></a></h2>
</div>
<?php else: ?>
<div class="related-item">
<?php echo $icon; ?><a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><img src="<?php bloginfo('template_directory'); ?>/timthumb.php?src=<?php bloginfo('template_directory'); ?>/images/thumbnail.png&w=134&h=90" alt="<?php the_title(); ?>" width='134' height='90' /></a>
<h2><a href='<?php the_permalink(); ?>' title='<?php the_title(); ?>'><?php the_title(); ?></a></h2>
</div>
<?php endif; ?>
<?php endwhile; ?>
</div>
</div>
<?php endif; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>