Código PHP:
<?php if(get_option('pyre_featured_slider') == 'On' && get_option('pyre_featured_tags')): ?>
<?php
$post_types = get_post_types();
unset($post_types['page'], $post_types['attachment'], $post_types['revision'], $post_types['nav_menu_item']);
$featured_posts = new WP_Query(array(
'post_type' => $post_types,
'showposts' => 5,
'tag' => get_option('pyre_featured_tags')
));
?>