Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. query_posts('&post_type=project&orderby=date');
  2.  
  3. add_filter('manage_edit-project_columns', 'add_new_project_columns');
  4. function add_new_project_columns($project_columns) {
  5.  
  6. // custom columns //
  7. $new_columns['cb'] = '<input type="checkbox" />';
  8. $new_columns['images'] = _x('Featured Image');
  9. $new_columns['title'] = _x('Title');
  10. $new_columns['projectcategories'] = _x('Filters');
  11. $new_columns['date'] = _x('Date');
  12.  
  13. // Query posts to show date first *NOT WORKING AS DESIRED* //
  14. query_posts('&post_type=project&orderby=date');
  15.  
  16. return $new_columns;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement