Created
September 21, 2016 05:06
-
-
Save jpen365/493c2560aa893edfaae7517153b72842 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 | |
/* 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