Title: Remove &#8220;Archive:&#8221; Text
Last modified: June 11, 2019

---

# Remove “Archive:” Text

 *  Resolved [klpiazza](https://wordpress.org/support/users/klpiazza/)
 * (@klpiazza)
 * [7 years ago](https://wordpress.org/support/topic/remove-archive-text/)
 * I can not find where in the world the “Archive:” text is coming from on my podcast
   archive page 🙂 I can’t find any info on it at all. I just want it to say “Podcast”.
   Using Seriously Simple Podcasting. Thanks.
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-archive-text%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Team Brainstorm Force](https://wordpress.org/support/users/brainstormteam/)
 * (@brainstormteam)
 * [7 years ago](https://wordpress.org/support/topic/remove-archive-text/#post-11630346)
 * Hi [@klpiazza](https://wordpress.org/support/users/klpiazza/) ,
 * You can use this code in the [Astra child theme’s](https://wpastra.com/child-theme-generator/)
   function.php file to remove the archive text-
 *     ```
       add_filter( 'get_the_archive_title', 'wpsite_archive_title_remove_prefix' );
       function wpsite_archive_title_remove_prefix( $title ) {
       if ( is_post_type_archive() ) {
       $title = post_type_archive_title( '', false );
       }
       return $title;
       }
       ```
   
 * I am sure this will do the job!
 * Regards,
    Deepak
 *  Thread Starter [klpiazza](https://wordpress.org/support/users/klpiazza/)
 * (@klpiazza)
 * [7 years ago](https://wordpress.org/support/topic/remove-archive-text/#post-11631462)
 * Worked like a charm 🙂 Thanks!
 * I’m getting too old for this stuff 🙂
 *  [Team Brainstorm Force](https://wordpress.org/support/users/brainstormteam/)
 * (@brainstormteam)
 * [7 years ago](https://wordpress.org/support/topic/remove-archive-text/#post-11633539)
 * Hi [@klpiazza](https://wordpress.org/support/users/klpiazza/) ,
 * Glad that I was able to help you. 🙂
 * Regards,
    Deepak

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove “Archive:” Text’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/astra/4.13.4/screenshot.jpg)
 * Astra
 * [Support Threads](https://wordpress.org/support/theme/astra/)
 * [Active Topics](https://wordpress.org/support/theme/astra/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/astra/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/astra/reviews/)

## Tags

 * [text](https://wordpress.org/support/topic-tag/text/)

 * 3 replies
 * 2 participants
 * Last reply from: [Team Brainstorm Force](https://wordpress.org/support/users/brainstormteam/)
 * Last activity: [7 years ago](https://wordpress.org/support/topic/remove-archive-text/#post-11633539)
 * Status: resolved