Created
September 21, 2016 04:52
-
-
Save jpen365/e19c26ef8946e7ae1fbfca32003e35e3 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
<?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