Wordpress - Plugin - Administration - ?

Posted by Goran on Stack Overflow See other posts from Stack Overflow or by Goran
Published on 2010-06-11T15:28:09Z Indexed on 2010/06/11 15:32 UTC
Read the original article Hit count: 256

Filed under:
|
|

Hi,

I'm building a Wordpress plugin and I added a menu page which serves for management of "Vendor" entities that are kinda similar to the existing User entities.

I have a list page similar to Users List, with Edit button for every record and when I click on the "Edit" button I should be taken to the "Edit Vendor" (which does not have its submenu item in the admin menu) page for that vendor. Everything is stored in the "plugins/wp_vendors" folder.

Question: What URL should I use for opening that Edit page? How should a slug be registered for the Edit Vendor page?

PS. Vendor List is added to the admin menu with

add_menu_page('Vendors', 'Vendors', 8, 'C:\wordpress\wp-content\plugins\wp-vendors\vendors-list.php');

And I can open the List page with

http://localhost/wp-admin/admin.php?page=wp-vendors/vendors-list.php

Can anyone help me on this?

© Stack Overflow or respective owner

Related posts about Wordpress

Related posts about plugins