Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jpen365/493c2560aa893edfaae7517153b72842 to your computer and use it in GitHub Desktop.
Save jpen365/493c2560aa893edfaae7517153b72842 to your computer and use it in GitHub Desktop.
<?php
/* Display custom post order in the post list */
function jpen_custom_post_order_value( $column, $post_id ){
if ($column == 'pos' ){
echo '<p>' . get_post_meta( $post_id, '_custom_post_order', true) . '</p>';
}
}
add_action( 'manage_posts_custom_column' , 'jpen_custom_post_order_value' , 10 , 2 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment