Advertisement
Guest User

Untitled

a guest
Dec 9th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. add_filter("manage_testimonial-edit_columns", "testimonial_edit_columns");
  2. add_action("manage_posts_custom_column", "testimonial_columns_display", 10, 2);
  3.  
  4. function testimonial_edit_columns($testimonial_columns){
  5. $testimonial_columns = array(
  6. "cb" => "<input type=\"checkbox\" />",
  7. "title" => "Title",
  8. "description" => "Description"
  9. );
  10. return $testimonial_columns;
  11. }
  12. function testimonial_columns_display($testimonial_columns){
  13. switch ($testimonial_columns)
  14. {
  15. case "description":
  16. the_excerpt();
  17. break;
  18. }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement