Change WordPress Shortcode added in to post


remove_shortcode( 'gallery' );
add_shortcode( 'gallery', function( $atts ) {
$atts = shortcode_atts( array( 'ids' => '' ), $atts );
return do_shortcode( "[wp-slideshow include=\"$atts[ids]\"]" );
} );

This may be better than replacing the gallery shortcode as if you decide to change plugin you will have the standard gallery shortcode which many plugins will work with directly.