Last active
January 6, 2016 01:51
-
-
Save dana-ross/24bdc33d4eb1ecb0fbfa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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