Okay
  Public Ticket #2553597
Change author on podcast episode post type
Closed

Comments

  • Stephanie started the conversation

    Hi,

    I'm trying to configure the search results for my website and noticed that my podcast episodes all show up under one author (me - the user who imported them). I don't see an option to change the author like there is with the regular blog post type. 

    I've turned off the author visibility for now but I'm concerned this information will show up in other areas/SEO and it won't show the correct authors name. Please advise!


  •  1,103
    Max replied

    We dont "use" the author metabox for our podcast post type. If you want to enable it, you can add this code in your function.php of your child theme:

    function allowAuthorEditing(){
      add_post_type_support( 'podcast', 'author' );
    }
    add_action('init','allowAuthorEditing');

    Thanks,


    Max from the Sonaar.io Crew

  • Stephanie replied

    Perfect, appreciate the quick reply!!

  •  1,103
    Max replied

    You are welcome! 

    Thanks,


    Max from the Sonaar.io Crew