It doesn't seem to call the custom post types. If it does, I can't figure out how! hope that helps.
http://wordpress.org/extend/plugins/yet-another-featured-posts-plugin/
It doesn't seem to call the custom post types. If it does, I can't figure out how! hope that helps.
http://wordpress.org/extend/plugins/yet-another-featured-posts-plugin/
I'm looking to do the same. I would like to target a specific post type and pull 1 featured post from it.
<?php
get_featured_posts( array('post_type' => 'promotions') );
$my_query = new WP_Query('post_type=promotions');
while ($my_query->have_posts()) : $my_query->the_post();
the_content();
endwhile;
?>
I can't it to work though. Are custom post types supported with the plugin?
You must log in to post.