add_help_tab( array( 'id' => 'authorsure_help_tab', 'title' => __('AuthorSure Settings'), 'content' => __( '
In the AuthorSure Settings section below you can choose to hide the author box for this page. You might want to do this typically on contact, privacy statement and terms and conditions pages.
')) ); } } } static function author_box_disable_panel() { global $post; $key = authorsure::get_hide_author_box_key(); $disabled = get_post_meta($post->ID, $key, true); $author_box_disabled = $disabled?' checked="checked"':''; $label = __('hide the author box on this page'); print <<< AUTHORSURE_HIDE AUTHORSURE_HIDE; } static function save($post_id) { $key = authorsure::get_hide_author_box_key(); update_post_meta( $post_id, $key, $_POST[$key] ); } } ?>