-
-
Save raamdev/7109032 to your computer and use it in GitHub Desktop.
Revisions
-
devinsays created this gist
Feb 5, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ <?php /* Add a checkbox to the featured image metabox */ add_filter( 'admin_post_thumbnail_html', 'theme_featured_image_meta'); function theme_featured_image_meta( $content ) { global $post; // Text for checkbox $text = __( "Don't display image on post.", 'textdomain' ); // Meta value ID $id = 'hide_featured_image'; $value = esc_attr( get_post_meta( $post->ID, $id, true ) ); // Output the checkbox HTML $label = '<label for="' . $id . '" class="selectit"><input name="' . $id . '" type="checkbox" id="' . $id . '" value="' . $value . ' "'. checked( $value, 1, false) .'> ' . $text .'</label>'; return $content .= $label; } ?>