Last active
August 29, 2015 14:04
-
-
Save BeardedGinger/8319426c9950bc405666 to your computer and use it in GitHub Desktop.
Only display meta box on a published posts edit screen.
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
| public function add_meta_box() { | |
| global $pagenow; | |
| if( in_array( $pagenow, array( 'post.php' ) ) ) { | |
| // Display only if post is published | |
| add_meta_box( | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment