Get Related Posts of Some Post in WordPress
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
<?php
global $wpdb;
$argss = array(
'post_type' => 'national_framework',
'orderby' => 'date',
'order' => 'DESC',
'post__not_in' => array($id),
);
$relatedPosts = new WP_Query($argss);
if( $relatedPosts->have_posts() ) {?>
<?php while( $relatedPosts->have_posts() ) {
$relatedPosts->the_post();
$post_id = get_the_ID();
}
}
?>