Home › Forums › Pro Support › Show posts in current category and specific tag › Reply To: Show posts in current category and specific tag
March 12, 2020 at 8:03 pm
#13926
Keymaster
You could try this:
$rel_posts = get_crp_posts_id(array ('postid' => $post_id, 'limit' => 4));
$args = array(
'post__in' => $rel_posts,
);
wpsp_display( 1234, $args );