Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <?php
  2. add_action( 'init', 'cptui_register_my_cpt_blog' );
  3. function cptui_register_my_cpt_blog() {
  4. register_post_type(‘blog’, array(
  5. "labels" => 'Livalest's Log',
  6. "description" => "",
  7. "public" => true,
  8. "show_ui" => true,
  9. "has_archive" => true,
  10. "show_in_menu" => true,
  11. "exclude_from_search" => false,
  12. "capability_type" => "post",
  13. "map_meta_cap" => true,
  14. "hierarchical" => false,
  15. "rewrite" => array( "slug" => "blog", "with_front" => true ),
  16. "query_var" => true,
  17. "menu_position" => 5,
  18. "supports" => array( "title", "editor", "excerpt", "custom-fields", "comments", "thumbnail" ),
  19. "taxonomies" => array( "category", "post_tag" ),
  20. "labels" => array(
  21. "name" => "ブログ",
  22. "singular_name" => "",
  23. "menu_name" => "Livalest's Log",
  24. "all_items" => "すべてのLivalest's Log",
  25. "add_new" => "新規追加",
  26. "add_new_item" => "Livalest's Logの新規追加",
  27. "edit" => "編集",
  28. "edit_item" => "Livalest's Logの編集",
  29. "new_item" => "新しいLivalest's Log",
  30. "view" => "表示",
  31. "view_item" => "Livalest's Logを表示",
  32. "search_items" => "Livalest's Logを検索",
  33. "not_found" => "見つかりません",
  34. "not_found_in_trash" => "ゴミ箱にはありません",
  35. "parent" => "親",
  36. ),
  37. "yarpp_support" => true
  38. ));}
  39. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement