Skip to content
WordPress.org
  • Showcase
  • Plugins
  • Themes
  • Hosting
  • News
    • Learn WordPress
    • Documentation
    • Education
    • Forums
    • Developers
    • Blocks
    • Patterns
    • Photos
    • Openverse ↗︎
    • WordPress.tv ↗︎
    • About WordPress
    • Make WordPress
    • Events
    • Five for the Future
    • Enterprise
    • Gutenberg ↗︎
    • Job Board ↗︎
    • Swag Store ↗︎
  • Get WordPress
Get WordPress
WordPress.org

Plugin Directory

Display Custom Fields

  • Submit a plugin
  • My favorites
  • Log in
  • Submit a plugin
  • My favorites
  • Log in

This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

Display Custom Fields

By Ben Balter
Download
  • Details
  • Reviews
  • Development
Support

Description

This plugin will work, “as is”, out of the box, but assumes some level of CSS and developer customization to adapt to your site’s specific needs.

Styles can be overridden via your theme’s style.css

Functionality can be overridden via your theme’s functions.php

”Examples”

Don’t display metabox on “product” post type:

add_filter( 'display_custom_fields', 'bb_no_product_metabox' );  function bb_no_product_metabox( $true, $post ) {   if ( $post->post_type == 'product' )     return false;    return true;  } 

Don’t display the product_id metakey

add_filter( 'dcf_postmeta', 'bb_no_product_id' );  function bb_no_product_id( $postmeta ) {   unset( $postmeta['product_id'] );   return $postmeta; } 

Don’t display metabox title

add_filter( 'dcf_heading', '__return_false' ); 

Display metabox below content (rather than floated to the right)

add_filter( 'dcf_before_content', '__return_false' ); 

Reviews

There are no reviews for this plugin.

Contributors & Developers

“Display Custom Fields” is open source software. The following people have contributed to this plugin.

Contributors
  • Ben Balter

Translate “Display Custom Fields” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

0.1

  • Initial Alpha Release

Meta

  • Version 0.1
  • Last updated 14 years ago
  • Active installations Fewer than 10
  • WordPress version 3.3 or higher
  • Tested up to 3.4.2
  • Tags
    cmscustom fieldsfront endmetametaboxpost metapostmetataxonomiestaxonomytermtermswikipedia
  • Advanced View

Ratings

1 out of 5 stars.
  • 0 5-star reviews 5 stars 0
  • 0 4-star reviews 4 stars 0
  • 0 3-star reviews 3 stars 0
  • 0 2-star reviews 2 stars 0
  • 1 1-star review 1 star 1

Your review

See all reviews

Contributors

  • Ben Balter

Support

Got something to say? Need help?

View support forum

Donate

Would you like to support the advancement of this plugin?

Donate to this plugin

  • About
  • News
  • Hosting
  • Privacy
  • Showcase
  • Themes
  • Plugins
  • Patterns
  • Learn
  • Documentation
  • Developers
  • WordPress.tv ↗
  • Get Involved
  • Events
  • Donate ↗
  • Five for the Future
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org
  • Visit our X (formerly Twitter) account
  • Visit our Bluesky account
  • Visit our Mastodon account
  • Visit our Threads account
  • Visit our Facebook page
  • Visit our Instagram account
  • Visit our LinkedIn account
  • Visit our TikTok account
  • Visit our YouTube channel
  • Visit our Tumblr account
Code is Poetry
The WordPress® trademark is the intellectual property of the WordPress Foundation.