-
-
Save mauriciogofas/bb03483e843aa8a5c270 to your computer and use it in GitHub Desktop.
Display Post and Page IDs in the WordPress Admin
This file contains 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
// fonte: http://premium.wpmudev.org/blog/display-wordpress-post-page-ids/ | |
add_filter( 'manage_posts_columns', 'revealid_add_id_column', 5 ); | |
add_action( 'manage_posts_custom_column', 'revealid_id_column_content', 5, 2 ); | |
function revealid_add_id_column( $columns ) { | |
$columns['revealid_id'] = 'ID'; | |
return $columns; | |
} | |
function revealid_id_column_content( $column, $id ) { | |
if( 'revealid_id' == $column ) { | |
echo $id; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment