Advertisement
MdRocky

Plugin-Development

Aug 13th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. /* Dashboard e notun kono option anar jonno and add new kore kore kesu add korar jonno */
  2. function Plugin_necesary(){
  3.     register_post_type("", array(
  4.         "labels" => array(
  5.             "name" => __("Teachers", "teachers"),
  6.             "add_new_item" => __("Add New Teachers", "teachers"),
  7.             "add_new" => __("Add Teachers", "teachers")
  8.         ),
  9.         "public" => true,
  10.         "support" => array("title", "editor", "thumbnail"),
  11.     ));
  12. }
  13. add_action("init", "Plugin_necesary");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement