Guest User

Untitled

a guest
Jul 12th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2. add_filter( 'manage_pages_columns', 'add_new_column_handler' );
  3. function add_new_column_handler( $columns ) {
  4. $columns['your_custom_column_name'] = 'Column Title';
  5. return $columns;
  6. }
Add Comment
Please, Sign In to add comment