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
| /* | |
| * Adds a Featured Post meta box to the post editing screen | |
| */ | |
| function blog_featured_meta() { | |
| add_meta_box( 'blog_meta', __( 'Featured Posts', 'blog-textdomain' ), 'blog_meta_callback', 'post', 'side', 'high' ); | |
| } | |
| add_action( 'add_meta_boxes', 'blog_featured_meta' ); | |
| /** | |
| * Outputs the content of the meta box |