Arduino Projeleri
ID);
if ($tags) {
$tag_ids = array();
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
$args=array(
‘tag__in’ => $tag_ids,
‘post__not_in’ => array($post->ID),
‘showposts’=>20, // Gösterilecek benzer yazı sayısı
‘ignore_sticky_posts’=>1,
‘orderby’=> ‘rand’ // Ratgele benzer yazıları listeliyoruz
);
$query = new wp_query($args);
if( $query->have_posts() ) {
echo ‘
Benzer Yazılar
- ‘;
- Arduino
while ($query->have_posts()) {
$query->the_post();
?>