slug !== ‘uncategorised’ && $t->slug !== ‘uncategorized’ ) {
$cat_name = $t->name;
$cat_url = get_term_link( $t );
break;
}
}
}
?>
Disclosure: As an Amazon Associate, we earn from qualifying purchases.
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
3,
‘post_status’ => ‘publish’,
‘post__not_in’ => [ get_the_ID() ],
‘orderby’ => ‘rand’,
];
$cat_ids = wp_get_post_categories( get_the_ID() );
if ( $cat_ids ) $related_args[‘category__in’] = $cat_ids;
$related = new WP_Query( $related_args );
if ( $related->have_posts() ) :
?>