Disable podcast archive page
-
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 permalinkmysite.com/podcast/
How can I free up
mysite.com/podcast/
while still usingpodcast
as the slug for Podcast posts? Thank you
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Disable podcast archive page’ is closed to new replies.