Rotate featured post image

You could add time params to your WP_Query. Posts that have the same tag and were published during the current week: <?php $recent = new WP_Query(‘post_type=stories&story_tag=featured&posts_per_page=4&year=”.date(“Y’).’&w=’.date(‘W’); ?> Source: the codex and me since i recently did this.