Skip to content

Instantly share code, notes, and snippets.

@jpen365
Created September 21, 2016 05:05
Show Gist options
  • Save jpen365/0667e6aec28c317482ccde77772eb885 to your computer and use it in GitHub Desktop.
Save jpen365/0667e6aec28c317482ccde77772eb885 to your computer and use it in GitHub Desktop.
<?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