Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to develop my own plugin and i have got a little problem with links in admin-header.php. The plugin adds "CVs" to the main menu in Wordpress admin site like this:

add_menu_page('CVs', 'CVs', 'add_users','../wp-content/plugins/cvs/cvs-overview.php','',plugins_url('CVs/icon.gif'), 26);

The cvs-overview.php looks like this:

require_once "../../../wp-admin/admin.php";
require_once "../../../wp-admin/admin-header.php";
echo "<div class=\"wrap\"><h2>hi!</h2></div>";
require_once "../../../wp-admin/admin-footer.php";

I know, the "../" is not probably the best solution but i just playing with it. The problem is, that when i click on the CVs in the main menu, i get this page but every link in the main menu takes the path of the plugin, for example:

/wp-content/plugins/cvs/edit.php

Which clearly leads to an error instead of the page where you can edit posts. I am not pretty sure how to do this, so if anyone can help me, i would be glad.

Thank you, T.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.