change wordpress gallery shortcode to slider

Hi I wanted to change the default WordPress gallery short-code and make it a slider. remove_shortcode( ‘gallery’ ); function gallery_filter( $atts, $content = null ) { extract(shortcode_atts(array(‘gallery_name’ => ”), $args)); $args = array( ‘post_type’ => ‘attachment’, ‘numberposts’ => 3, ‘post_parent’ => $post->ID, ‘order’ => ‘ASC’, ‘orderby’ => ‘menu_order’, ‘post_mime_type’ => ‘image’ ); $output .= ‘<script … Read more

Slideshow control for use in WordPress Thesis theme – non flash

I want to use a good elegant slideshow control in my website. The website is created in wordpress and I am using the Thesis theme. I did find a Nivo slider but am stuck at the integration with Thesis (using the custom functions and custom css files). Can someone suggest a good non-flash slideshow widget … Read more