Created
September 21, 2016 05:05
-
-
Save jpen365/0667e6aec28c317482ccde77772eb885 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 | |
/* Add custom post order column to post list */ | |
function jpen_add_custom_post_order_column( $columns ){ | |
return array_merge ( $columns, | |
array( 'pos' => 'Position', )); | |
} | |
add_filter('manage_posts_columns' , 'jpen_add_custom_post_order_column'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment