Guest User

Untitled

a guest
Mar 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function add_column_header_298736( $defaults ) {
  2. $defaults[ 'image' ] = 'Image';
  3.  
  4. return $defaults;
  5. }
  6. add_filter( 'manage_results_posts_columns', 'add_column_header_298736', 20 );
  7.  
  8. function add_column_content_298736( $column_name, $post_id ) {
  9.  
  10. if ( $column_name == 'image' ) {
  11. // do stuff to retrieve your image
  12. }
  13. }
  14. add_action( 'manage_{your_post_type}_posts_custom_column', 'add_column_content_298736', 20, 2 );
Add Comment
Please, Sign In to add comment