Skip to content

Instantly share code, notes, and snippets.

@jcanfield
Last active August 29, 2015 14:15
Show Gist options
  • Save jcanfield/fb7b80d9a642298b1883 to your computer and use it in GitHub Desktop.
Save jcanfield/fb7b80d9a642298b1883 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><?php echo $post->title; ?></title>
<link rel="stylesheet" href="https://www.drmcdougall.com/wp/wp-admin/load-styles.php?c=1&amp;dir=ltr&amp;load=dashicons,wp-admin,buttons,wp-auth-check&amp;ver=4.1" type="text/css" media="all">
</head>
<body>
<div class="wrap">
<div id="icon-edit-pages" class="icon32"></div>
<h2><?php echo $post->title; ?></h2>
<form name="chart_form" method="post">
<input type="hidden" name="action" value="some-action">
<?php wp_nonce_field( 'some-action-nonce' );
/* Used to save closed meta boxes and their order */
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
<div id="poststuff">
<div id="post-body" class="metabox-holder columns-1">
<div id="post-body-content">
<!-- #post-body-content -->
</div>
<div id="postbox-container-1" class="postbox-container">
<?php //do_meta_boxes( $screen,'normal',$post); ?>
<?php do_meta_boxes( $screen,'advanced',$post); ?>
</div>
<!--
<div id="postbox-container-1" class="postbox-container">
<?php do_meta_boxes( EWD_Program_Signups::get_post_type(),'side',$post); ?>
</div>
-->
</div> <!-- #post-body -->
</div> <!-- #poststuff -->
</form>
</div><!-- .wrap -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment