Skip to content

Instantly share code, notes, and snippets.

@sutandang
Created June 6, 2017 15:47
Show Gist options
  • Save sutandang/cad996a47b27f8e5ad7f3cb5c7ae6928 to your computer and use it in GitHub Desktop.
Save sutandang/cad996a47b27f8e5ad7f3cb5c7ae6928 to your computer and use it in GitHub Desktop.
how to add row to wordpress admin post type
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