By default, every Studiopress child theme for Genesis framework display “Filed under” text next to categories and “Tageed with” text next to tags in post meta section. While this is meaningful, few users may want to modify this text. For example: show “Tags” instead of “Tagged with”.

Please Note: This code was tested on Aug 23, 2015 on Genesis Sample Themes. It works fine.

Add following code to functions.php file, this will replace “Filed Under” text with “Category: “ and “Tagged with” text with “Tags: “. Further, you can edit “Category” and “Tags” in the code for any custom text that you may want to display.

https://gist.github.com/70b4adfbd6b2fed05536

Following code will delete “Filed Under” and “Tagged With” text from display in post meta information on your Studiopress theme.

https://gist.github.com/e3cb72978ef4b12eb3a8

Incase above looks difficult for you to implement, then you can use Genesis Simple Edits plugin. It allows editing of three most commonly modified areas in any Genesis theme: the post-info (byline), the post-meta and the footer area.

Originally Published on Aug 19, 2012
Updated with code for HTML5 Genesis Themes

Davinder Singh Kainth

A digital creator with 15+ years of experience in Website Design, Development, SEO, and Content Creation to Podcasting at SmartWebCreators.com with the motto of "Be Smart, Keep Creating". A coach, consultant, and your dear geek friend ❖

12 Comments

  1. Patrice on March 21, 2014 at 7:04 am

    Hello,
    this does not seem to work with genesis 2.0 , do you have an idea of how to change the “file under” and “tagged with” texts ?

    thank you!

  2. Bogdan Vaida (Mortu) on November 12, 2014 at 12:59 pm

    Thanks.
    It helped me a lot with modifying that “FILED UNDER”.
    From Genesis Simple Edits I just added [post_categories sep=”/” before=”WHAT I WANT: “]

    • leandra on October 12, 2015 at 12:29 pm

      This worked perfectly for me – thank you!

    • Jeroen on June 23, 2017 at 1:59 pm

      simple and perfect!

  3. Daniel on April 17, 2015 at 10:26 pm

    Hi I have tried this code to try remove text, before Categories and Tags in Metro Pro in my Site Plugin and it has no affect. Could the short codes have changed?

  4. Alex on May 28, 2015 at 9:48 am

    Hi Davinder,

    I’ve copied the snippet to DELETE the ‘FILED UNDER’ text in my functions.php, but it didn’t make any difference. Any suggestions to make it work? Thanks a lot!

    • Davinder Singh Kainth on May 29, 2015 at 5:58 pm

      Can you share your website url and which specific Genesis theme is being used?

  5. Maira on July 19, 2015 at 10:06 pm

    Hi Davinder, thanks for this tutorial, I have the same problem, I want to remove the File Under text and the snippet didn’t work, I’m using Genesis Sample.

  6. David on January 28, 2016 at 7:40 pm

    Same issue here. Not having any effect for me with Genesis 2.2.6.

  7. Vibeke on August 22, 2017 at 12:58 pm

    This worked perfectly for me, as I needed to change the ‘Filed With’ and ‘Tagged With’ wording to Spanish. Thank you so much!

    • Vibeke on August 22, 2017 at 1:00 pm

      Oh, actually I combined two codes with the help of the code in this post. This is what worked for me:

      // Customize entry meta footer
      add_filter( ‘genesis_post_meta’, ‘themeprefix_post_meta_filter’ );
      function themeprefix_post_meta_filter( $post_meta ) {
      $post_meta = ‘Por [post_author_posts_link] | [post_categories before=”Categoría: “] | [post_tags before=”Etiqueta: “]’;
      return $post_meta;
      }

      • jorgiyo on September 16, 2017 at 11:37 pm

        To translate you can use this plugin
        Genesis Translations

Leave a Comment