• پایان فعالیت بخشهای انجمن: امکان ایجاد موضوع یا نوشته جدید برای عموم کاربران غیرفعال شده است

هک نشان دادن مطالب مرتبط در ورپرس بدون پلاگین

spanish

Registered User
تاریخ عضویت
8 ژوئن 2013
نوشته‌ها
1,164
لایک‌ها
407
محل سکونت
List Subscriptions ███████████████ P.M:4815162342
با سلام

با استفاده از کد زیر میتوانید مطالب مرتبط رو با استفاده از موضوع در سایتتون نمایش بدید

PHP:
<?php $orig_post = $post;
global $post;
$categories = get_the_category($post->ID);
if ($categories) {
$category_ids = array();
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
$args=array(
'category__in' => $category_ids,
'post__not_in' => array($post->ID),
'posts_per_page'=> 7,
'caller_get_posts'=>1
);
$my_query = new wp_query( $args );
if( $my_query->have_posts() ) { while( $my_query->have_posts() ) {
$my_query->the_post();?>
<li>
        <div class="relatedthumb">
        <a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_post_thumbnail(); ?></a></div>
        <div class="relatedcontent">
        <h3><a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_title(); ?></a></h3>
        <?php the_time('j,M,Y') ?>
        </div>
</li>
<?
}
}
}
$post = $orig_post;

سوالی داشتید در خدمتم
 
بالا