Title: Display Custom Fields
Author: Ben Balter
Published: <strong>January 15, 2012</strong>
Last modified: January 15, 2012

---

Search plugins

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.

![](https://s.w.org/plugins/geopattern-icon/wp-display-custom-fields.svg)

# Display Custom Fields

 By [Ben Balter](https://profiles.wordpress.org/benbalter/)

[Download](https://downloads.wordpress.org/plugin/wp-display-custom-fields.zip)

 * [Details](https://wordpress.org/plugins/wp-display-custom-fields/#description)
 * [Reviews](https://wordpress.org/plugins/wp-display-custom-fields/#reviews)
 * [Development](https://wordpress.org/plugins/wp-display-custom-fields/#developers)

 [Support](https://wordpress.org/support/plugin/wp-display-custom-fields/)

## 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 ](https://profiles.wordpress.org/benbalter/)

[Translate “Display Custom Fields” into your language.](https://translate.wordpress.org/projects/wp-plugins/wp-display-custom-fields)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/wp-display-custom-fields/),
check out the [SVN repository](https://plugins.svn.wordpress.org/wp-display-custom-fields/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/wp-display-custom-fields/)
by [RSS](https://plugins.trac.wordpress.org/log/wp-display-custom-fields/?limit=100&mode=stop_on_copy&format=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
 * [cms](https://wordpress.org/plugins/tags/cms/)[custom fields](https://wordpress.org/plugins/tags/custom-fields/)
   [front end](https://wordpress.org/plugins/tags/front-end/)[meta](https://wordpress.org/plugins/tags/meta/)
   [metabox](https://wordpress.org/plugins/tags/metabox/)[post meta](https://wordpress.org/plugins/tags/post-meta/)
   [postmeta](https://wordpress.org/plugins/tags/postmeta/)[taxonomies](https://wordpress.org/plugins/tags/taxonomies/)
   [taxonomy](https://wordpress.org/plugins/tags/taxonomy/)[term](https://wordpress.org/plugins/tags/term/)
   [terms](https://wordpress.org/plugins/tags/terms/)[wikipedia](https://wordpress.org/plugins/tags/wikipedia/)
 *  [Advanced View](https://wordpress.org/plugins/wp-display-custom-fields/advanced/)

## Ratings

 1 out of 5 stars.

 *  [  0 5-star reviews     ](https://wordpress.org/support/plugin/wp-display-custom-fields/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/wp-display-custom-fields/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/wp-display-custom-fields/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/wp-display-custom-fields/reviews/?filter=2)
 *  [  1 1-star review     ](https://wordpress.org/support/plugin/wp-display-custom-fields/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-display-custom-fields/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/wp-display-custom-fields/reviews/)

## Contributors

 *   [ Ben Balter ](https://profiles.wordpress.org/benbalter/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/wp-display-custom-fields/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](http://ben.balter.com/donate)