Skip to content

Instantly share code, notes, and snippets.

@BeardedGinger
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save BeardedGinger/8319426c9950bc405666 to your computer and use it in GitHub Desktop.

Select an option

Save BeardedGinger/8319426c9950bc405666 to your computer and use it in GitHub Desktop.
Only display meta box on a published posts edit screen.
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