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?
- 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?
- What do you think about custom designed plugin/theme options UIs?
- Where to put third party PHP library?
- How to use PanelColorSettings in custom Gutenberg block?
- 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?
- Is There A Hook To Process The Content Of The Text Widget?
- What is the recommended way to create plugin administration forms?
- How to log plugin errors to plugin error_log file
- Which to use to execute code during the saving of a plugin settings page?
- Overwriting Core WordPress Functions with Plugins
- Custom theme sufficient or custom plugin neccessary for this feature set?
- When to check if a function exists
- 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
- 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 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?
- OOP Plugin and Menu – Call to undefined function register_setting()
- Adding functions to hooks from within a class
- Disable The Events Calendar plugin from loading its scripts
- Applying OO patterns and principles to plugin development
- WordPress is automatically linking plain text email addresses
- Is Using WordPress Supplied WYSIWYG Advisable?
- Is it possible to change a term slug before being saved to the database?
- Maximum lifetime for nonce
- 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
- 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
- Show/Hide ‘add new user’ custom fields in wordpress admin panel by click another field
- Incorporate small angular feature in my wordpress site
- Bootstrap doesn’t work on admin menu page-How to override wp-admin style?
- How to Bind one post object Type with other postobject Type in Advanced Custom field [closed]
- Search: how to extend the existing search to include a custom table
- Is there documentation reference for forms in menu and setting pages?
- Enqueue script globally
- How should I go about registering JavaScript that isn’t a file? [duplicate]
- Custom entity search and display
- Silently register plugin pages
- Plugin: database creation
- Loading Modernizr (or other JavaScript libraries) for use in a plugin
- Show message from backend
- Print Dashboard submenu name and filename
- Why in this archive page that call query_posts() function show only the last 10 posts?
- I am trying to make a page in the admin section similar to the appearance of the Profile page for users
- Logout after clicking URL link results in “headers already sent” error
- Converting core modification to a plugin
- Disable Auto-Expanding Menu in WordPress Admin Menus
- in_array function Problem
- How to replace settings in WordPress plugin from a theme
- How to remove/replace current page template?
- Proper way to create an administration page without adding it to the menu
- Setting a post’s category
- Pause plugin option page until all data manipulation is complete
- How to add text editor in plugin menu?
- Serial Number from custom table not appear in woocommerce_email_before_order_table action
- How to make an admin plugin menu page go full screen?
- How to create a custom post-new.php page for plugin , no wp menu
- Want to know how to reveal a WordPress theme, considering the theme name is hidden?
- Save meta box data from selected dropdown list in bbpress reply form
- Metabox types list
- Where to save Gutenberg plugin data?
- Create Customization panel for Plugins not for theme
- external Integration with wordpress timeout error
- Add function to Dokan ajax class
- Implementing Select2 plugin into WordPress
- Developing a plugin where users can edit entries saved in database
- Managing Custom Designed Content
- Can I access WordPress API’s from within plugin scripts?
- Add a description/hint field in the admin page of a plugin
- Forcing ALL plugin Admin menus into a separate menu
- Change the search results header from plugin
- Plugin admin list pages as submenu
- Client Profiles
- 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?
- 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