Skip to content

Instantly share code, notes, and snippets.

@dana-ross
Last active January 6, 2016 01:51
Show Gist options
  • Save dana-ross/24bdc33d4eb1ecb0fbfa to your computer and use it in GitHub Desktop.
Save dana-ross/24bdc33d4eb1ecb0fbfa to your computer and use it in GitHub Desktop.
function render_subhead_meta_box() {
echo 'This is my meta box';
}
// This is equivalent to:
// add_meta_box( 'subhead', 'Article Subhead', 'render_subhead_meta_box' )
$add_meta_box_subhead = curry( 'add_meta_box', 'subhead' );
$add_meta_box_subhead_with_title = $add_meta_box_subhead( 'Article Subhead' );
$add_meta_box_subhead_with_title( 'render_subhead_meta_box' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment