Created
June 6, 2017 15:47
-
-
Save sutandang/cad996a47b27f8e5ad7f3cb5c7ae6928 to your computer and use it in GitHub Desktop.
how to add row to wordpress admin post type
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
add_filter('manage_inquiry_posts_columns', 'custom_table_head'); | |
function custom_table_head( $defaults ) { | |
$defaults['author'] = 'Inquiry By'; | |
$defaults['date'] = 'Created Date'; | |
return $defaults; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment