I recommend Featurific - Its a Wordpress plugin that displays featured items, in a beautiful and professional flash gallery. Its also available for free for both Wordpress and Non-Wordpress Users. Give it a try!
how do i get this to show on my site, i have chosen which posts and everything but the slider is not showing.
If you want the slideshow with all the added featured posts on your home page, then open Index.php file from Dashboard by clicking on Tab Appearance / Editor and paste the following piece of code at the suitable place. if ( function_exists( 'get_smooth_slider' ) ) { get_smooth_slider(); } If you want to put the slider before the list of articles on your Wordpress blog homepage, put the above piece of code before the Wordpress Loop (the code is a php code, so ensure that it is enclosed within the php tags). Wordpress loop code is shown below: if(have_posts()) : while(have_posts()) : the_post(); -------------------------------------------------------- Hope it will show up now at your site !