Bring Your Business to Life › Support › Image Store › from album to slideshow › Reply To: from album to slideshow
April 30, 2012 at 10:54 pm #46685
Keymaster
I know is a very late reply but if you still need the code here it is. If you don’t need it any more hopefully it can help others.
function change_album_gallery_link( $permalink, $post ){ if( empty( $post->post_type ) || $post->post_type != 'ims_gallery' ) return $permalink; global $wp_rewrite; if( $wp_rewrite->using_permalinks() ) return $permalink . "/slideshow/"; else return $permalink . "&imspage=slideshow"; }add_filter( 'post_type_link', 'change_album_gallery_link', 50, 2 );