If I understand correctly what you are asking, you need the $menu_slug
used when adding your menu pages:
//add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
//add_submenu_page( $parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function );
$your_link_url = admin_url( 'admin.php?page=".$menu_slug, "http' );
OR SPECIFICALLY FOR YOU
$your_link_url = admin_url( 'admin.php?page=nes_vendor_new', 'http' );
You can always verify the link by clicking on the menu item and see where it takes you.
Related Posts:
- Objective Best Practices for Plugin Development? [closed]
- How do i best handle custom plugin page actions?
- How to create an API for my plugin?
- Is it ever okay to include inline CSS in plugins?
- Plugins in symlinked directories?
- In Which Contexts are Plugins Responsible for Data Validation/Sanitization?
- Plugin Form Submission Best Practice
- Best way to abort plugin in case of insufficient PHP version?
- Passing arguments to a admin menu page callback?
- How can I configure Docker for developing and deploying a custom theme?
- What do you think about custom designed plugin/theme options UIs?
- No Error Log File, no debug info
- Where to put third party PHP library?
- Is the new WordPress 3.1 admin bar pluggable and how can I extend it?
- How to use PanelColorSettings in custom Gutenberg block?
- Getting a peer review for my new plugin?
- Optimize shortcode callbacks
- Admin settings update updating every time home page is hit?
- What’s the best method for emptying an option created with the Settings API?
- How to integrate a PHP webmail script into the backend of WordPress?
- Using filters and actions for plugin API?
- Is There A Hook To Process The Content Of The Text Widget?
- What is the recommended way to create plugin administration forms?
- How to Change the Entire WordPress Admin panel Look and Feel?
- How to log plugin errors to plugin error_log file
- How to add a new plugin page under desired Options page?
- Which to use to execute code during the saving of a plugin settings page?
- Is it possible to add an admin page using add_submenu_page() and pass a var in the query string?
- Allowing for multiple template views on the Gallery Settings page when using the Visual Editor
- Using Primary Color in Plugin Block
- Overwriting Core WordPress Functions with Plugins
- When is it appropriate to put functions on page template vs. functions.php?
- Custom theme sufficient or custom plugin neccessary for this feature set?
- Naming Admin Menus and Submenus
- When to check if a function exists
- Current class on admin menu using add_submenu_page()
- How to create custom home page via plugin?
- Add Admin Menu Inside Construct or Init
- Adding callback function for wp_ajax_ has no effect
- Sessions not creating correctly in custom function
- Featured Image not showing in admin
- How to use wp_set_password in a plugin?
- Hook event for upload image in the menu
- Menu Error in Admin Console with Custom Plugin: You do not have sufficient permissions to access this page
- add_menu_page() with function inside a class [duplicate]
- How to add Font Awesome 5 icons in WP Admin dashboard menu?
- How Can I setup WP CLI on Windows development machine running AMPPS?
- WP_LOCALIZE_SCRIPT doesn’t work
- How to put placeholder text in the main post input area?
- Unified Approach for Placing Option Pages
- Plugin with specific admin menu icon
- Nuance in adding CPT and TAX to a submenu
- Can I differentiate between “Delete Post Permanently” and “Empty Trash” and do something for each accordingly?
- Delete a specific item menu when I deactivate my plugin
- Are we allowed to use the Allman (BSD) indent style when coding WordPress plugins and themes?
- OOP Plugin and Menu – Call to undefined function register_setting()
- Get the password key when using the wp_new_user_notification_email filter
- Order properties should not be accessed directly
- How to deal with equal & similar arguments for a function?
- Executing a function upon webhook calling wordpress
- Customizer: widget-synced triggers twice
- WordPress not working on localhost
- Adding functions to hooks from within a class
- how to use hook deleted_user into custom function to delete user from custom table
- Disable The Events Calendar plugin from loading its scripts
- Where to store the name of a custom table?
- Applying OO patterns and principles to plugin development
- WordPress is automatically linking plain text email addresses
- Is Using WordPress Supplied WYSIWYG Advisable?
- ServerSideRender and Media Object: attributes passing image data object to php renderer even though it’s not set
- Is it possible to change a term slug before being saved to the database?
- Global State During an Admin Post
- Maximum lifetime for nonce
- Clearing caches on plugin uninstall
- How to use a hook to override an update_post_meta call in a plugin?
- Add code inside specific wordpress standard function
- Custom Taxonomy to dropdown box on adminside wordpress
- Create a free scripts and styles template within a plugin
- Howto: Use Custom Post Types as Submenu Items in Admin
- Sub Menu content is being duplicated
- How to modify the comments to be displayed in a post?
- How can I turn a custom wordpress page into a product page?
- Set different custom menu items for different user roles
- Menu_slug used for creating options page
- Developing Themes on WordPress, Looking for Excellent Tutorials [closed]
- How to Implement SAM Broadcaster with WordPress? [closed]
- How to design WooCommerce-like admin tabs for plugin settings page?
- Is Explicit Versioning a better alternative to Semantic Versioning for wordpress?
- Custom plugin not appearing
- Extend WP_List_Table class – Edit wp_usermeta – WPPB.me Boilerplate – Action error
- Is there any other ways to replicating changes on live from staging without pushing from git
- Can I log the searches that are returning 404 in the DB?
- Show Admin Menu
- Developing an IP lookup function using an API
- Custom fields in the billing address section woocommerce
- Add File field in WooCommerce Box office plugin
- Sticky bar with filter button and product count
- Create a menu and a submenu
- Custom Gutenberg Block ‘Stylized List’ – Incorrect Rendering and Looping of List Items
- adding an options menu that allows saving multiple sets of said options