Get TOP x Tags from selected posts
With an array containing the post IDs its easy $post_ids = array( 167, 774, 787, 358 ); $tag_all = array(); foreach ( $post_ids as $post_id ) { $tags = wp_get_post_tags( $post_id, array() ); foreach ( $tags as $tag ) array_push( $tag_all, $tag->name ); } $result = array_count_values($tag_all); arsort( $result ); $result = array_slice( $result, 0, … Read more