Last active
August 29, 2015 14:15
-
-
Save jcanfield/fb7b80d9a642298b1883 to your computer and use it in GitHub Desktop.
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
<!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&dir=ltr&load=dashicons,wp-admin,buttons,wp-auth-check&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