url - Create plugin pages in wordpress -


i writing wordpress plugin managing info clients , projects company.

i have admin menu called "clients", displays simple table entries. if have "edit" button every table row, how link button page data edited (passing client id)? how url rewriting work here?

sorry asking such simple questions.. , thanks.

edit:

how create edit-page in admin area, keeping admin menu on left, etc.? have used add submenu item:

      add_submenu_page( "my-plugin-menu", __('general settings').'|'.__('my plugin'),           __('general settings'), 1, "my-plugin-general", "my_plugin_admin_menu");      /* include admin page content. */     function my_plugin_admin_menu()     {       global $wpdb;        include 'admin/pages/admin_menu.php'; // admin page content.     }  

where entries getting pulled in from? posts table? or have created own table? within posts table can pull in post_id , use this.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -