function dshop_label_series() { global $post; $currentID = $post->ID; $restrictToCategoryID = 0; //Change this to the desired category $series = get_post_meta($post->ID, 'dshop_cat', true); if($series) { $args = array( 'numberposts' => 5, 'meta_key' => 'dshop_cat', 'meta_value' => $series, 'orderby'=>rand, 'category' => $restrictToCategoryID ); $series_posts = get_posts($args); echo ''; } wp_reset_query(); }