array( $post_id ), 'post_type' => 'post', 'posts_per_page' => 3, 'post_status' => 'publish', 'ignore_sticky_posts' => true, ); $acmephoto_related_post_display_from = $acmephoto_customizer_all_values['acmephoto-related-post-display-from']; if ( 'tag' == $acmephoto_related_post_display_from ) { $tags = get_post_meta( $post_id, 'related-posts', true ); if ( ! $tags ) { $tags = wp_get_post_tags( $post_id, array( 'fields' => 'ids' ) ); $acmephoto_cat_post_args['tag__in'] = $tags; } else { $acmephoto_cat_post_args['tag_slug__in'] = explode( ',', $tags ); } } else { $cats = get_post_meta( $post_id, 'related-posts', true ); if ( ! $cats ) { $cats = wp_get_post_categories( $post_id, array( 'fields' => 'ids' ) ); $acmephoto_cat_post_args['category__in'] = $cats; } else { $acmephoto_cat_post_args['cat'] = $cats; } } $acmephoto_featured_query = new WP_Query( $acmephoto_cat_post_args ); if ( $acmephoto_featured_query->have_posts() ) { ?>