Skip to content

Instantly share code, notes, and snippets.

@andrewheins
Created July 11, 2012 16:24
Show Gist options
  • Save andrewheins/3091540 to your computer and use it in GitHub Desktop.
Save andrewheins/3091540 to your computer and use it in GitHub Desktop.
WP - Meta Field
/*
* Meta control for WordPress Pages
*
*/
<div class="my_meta_control">
<div>
<?php $mb->the_field('DEF'); ?>
<label for="<?php $mb->the_name(); ?>">DEF</label>
<input type="text" name="<?php $mb->the_name(); ?>" value="<?php $mb->the_value(); ?>"/>
<span>DEF</span>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment