Title: Custom Fields?
Last modified: August 21, 2016

---

# Custom Fields?

 *  Resolved [Martin](https://wordpress.org/support/users/rastarr/)
 * (@rastarr)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/custom-fields-84/)
 * Is there any way I can display Custom Fields on my badges edit screens like afforded
   me on Posts and Pages?
    You see, I need to add a custom field value so my usual
   Author Bo doesn’t display as it looks a little out of place on what is an informational
   page.
 * Is this possible to do through maybe a functions.php entry?
 * [http://wordpress.org/extend/plugins/badgeos/](http://wordpress.org/extend/plugins/badgeos/)

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

 *  Plugin Author [Brad Williams](https://wordpress.org/support/users/williamsba1/)
 * (@williamsba1)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/custom-fields-84/#post-3870513)
 * If you are looking for the Custom Fields metabox, you could drop this code into
   your functions.php file to display it:
 *     ```
       add_action( 'init', 'bos_add_post_type_support' );
   
       function bos_add_post_type_support() {
   
       	add_post_type_support( 'badge', 'custom-fields' );
   
       }
       ```
   
 * Keep in mind many of the custom fields for BadgeOS are prefixed with an underscore,
   which hides them from displaying in the Custom Fields metabox.
 *  Thread Starter [Martin](https://wordpress.org/support/users/rastarr/)
 * (@rastarr)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/custom-fields-84/#post-3870564)
 * Worked a treat, Brad – thank you.
 * Just a note to anyone else, you need to adjust the badge part of the add_post_type_support
   portion to be the slug of the award type
 *  [DrHariri](https://wordpress.org/support/users/ala7lam/)
 * (@ala7lam)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/custom-fields-84/#post-3870753)
 * Was looking to do the same thing and hopefully be able to map a custom field 
   to Credly instead of the default ones.
 * Thanks all!

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

The topic ‘Custom Fields?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/badgeos_85d3bc.svg)
 * [BadgeOS](https://wordpress.org/plugins/badgeos/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/badgeos/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/badgeos/)
 * [Active Topics](https://wordpress.org/support/plugin/badgeos/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/badgeos/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/badgeos/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [DrHariri](https://wordpress.org/support/users/ala7lam/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/custom-fields-84/#post-3870753)
 * Status: resolved