Skip to content

Instantly share code, notes, and snippets.

@jpen365
Created September 21, 2016 04:52
Show Gist options
  • Save jpen365/e19c26ef8946e7ae1fbfca32003e35e3 to your computer and use it in GitHub Desktop.
Save jpen365/e19c26ef8946e7ae1fbfca32003e35e3 to your computer and use it in GitHub Desktop.
<?php
/* Create custom meta data box to the post edit screen */
function jpen_custom_post_sort( $post ){
add_meta_box(
'custom_post_sort_box',
'Position in List of Posts',
'jpen_custom_post_order',
'post' ,
'side'
);
}
add_action( 'add_meta_boxes', 'jpen_custom_post_sort' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment