document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function cpt_column_data($column){
  2.     global $post;
  3.     switch($column){
  4.         case "banner-order":
  5.             echo get_post_meta($post->ID,\'order\',true);
  6.             break;
  7.     }
  8. }
  9. add_action("manage_posts_custom_column",\'cpt_column_data\');
');