Home › Forums › Pro Support › Show posts in current category and specific tag › Reply To: Show posts in current category and specific tag
March 23, 2020 at 3:42 pm
#14177
Keymaster
Hmm, I’m not sure what’s going on in that case.
You could try debugging the args:
$scores = get_crp_posts_id();
$rel_posts = array_column( (array) $scores, 'ID' );
add_filter( 'wp_show_posts_shortcode_args', function( $args, $settings ) {
if ( 1234 === $settings['list_id'] ) {
$args['post__in'] = $rel_posts;
}
// This should output your IDS for the post__in value.
var_dump($args);
return $args;
}, 10, 2 );
wpsp_display( 1234, $args );
Are they visible in your args?