• Resolved David Wang

    (@blogjunkie)


    Hi Hugh, thanks for your awesome plugin. I hope you can help me with this.

    I would like to create a show info page at mysite.com/podcast/. However SSP uses that as the podcast archive page. Thanks to your filters, I used code to disable the archive page:

    add_filter( 'ssp_register_post_type_args', 'child_modify_podcast_cpt_args', 99 );
    function child_modify_podcast_cpt_args( $args ) {
    	$args['has_archive'] = false;
    	return $args;
    }
    

    However mysite.com/podcast/ now displays the RSS feed. mysite.com/feed/podcast/ also displays the RSS feed. WordPress still wont let me create a page with the permalink mysite.com/podcast/

    How can I free up mysite.com/podcast/ while still using podcast as the slug for Podcast posts? Thank you

    • This topic was modified 8 years, 4 months ago by David Wang.
Viewing 1 replies (of 1 total)
  • Hi blogjunkie,

    did you fix this problem?

    I’ve the same issue ??
    Thanks if you’ll decide to share a solution!

Viewing 1 replies (of 1 total)
  • The topic ‘Disable podcast archive page’ is closed to new replies.