I could see “WP Links Page” is a custom post type, so if it’s not registered by your own code, e.g. it’s registered by a plugin (using register_post_type()
), then you can use the register_post_type_args
filter to change the menu_position
argument like so:
add_filter( 'register_post_type_args', 'my_override_register_post_type_args', 10, 2 );
function my_override_register_post_type_args( $args, $post_type ) {
// Move "WP Links Page" to below the "Pages". You could also try using 21 instead.
if ( 'wplp_link' === $post_type ) {
$args['menu_position'] = 20;
}
return $args;
}
Related Posts:
- Extension preview disapeared since WP 4.5.2
- Delete Custom Dashboard Widgets
- Editor access to plugin settings
- How to develop a community feature in the dashboard for multiauthor site
- Remove Widgets in Dashboard
- How can I ‘reactivate’ .PHP files within a WP plugin that have been marked ‘inactive’?
- Give editors access to particular plugin – turn “admin.php” into “edit.php”
- Created Widget Not Showing up on Admin Panel
- Dashboard Disappears after Upgrade
- Compatibility with RTL installations
- Dashboard Widget Form
- Frontend editing, Frontend user dashboard
- Can I use a form in a dashboard widget?
- Is there a way to order posts and custom post types as one group?
- Determine Registered Admin Menus
- How to make an interface similar to multi-site for switching between multiple (single) sites for administrators?
- Plugin: Google Analytics for Dashboard error – Timestamp is too far from current time
- Merging Two menus in the backend into one menu
- How to remove admin main menu name repetition
- How to exclude certain files from the plugin editor?
- Sync User to cPanel webmail?
- How do I add content to the dashboard in WordPress?
- Remove specific plugins and themes from the Dashboard->Updates page [duplicate]
- Login problem after installing my written plugin [closed]
- Allowed memory size exhausted problem
- How can i force wp-admin to use 2-column dashboard layout? [closed]
- I changed font of wordpress dashboard but it is slow!
- Is there a way to remove plugins in dashboard – where you cannot identify the slug by the plugins name?
- Creating a search form and displaying results
- Displaying URL Based on User Input from a Form W/in a Dashboard Widget
- Widget Screen Locked
- how to render dashboard widgets conditionaly in wordpress admin
- Stopping WordPress’ WYSIWYG Editor from Converting “didn’t” into “didn””””’t”?
- Can’t save changes or modify settings in Dashboard but Pages and Posts are fine
- How can I disable new plugin and theme install, but allow updates?
- Use localized plugin name and description even when the plugin is disabled
- How to access a wordpress plugin page or add posts without doing it from the WordPress dashboard?
- Need help with Task assigning and rewarding as currency which withdrawable
- WordPress Dashboard add user password not working, etc
- How To Remove “All, Publish, Draft and Expired” in Events Dashboard
- Why is my form going to frontend on html form submission present on the php files inside my custom plugin?
- Blank dashboard with no access
- Not able to upload Plugins/ Theme from Admin backend
- Ajax response returns html code instead of user data
- WordPress Dashboard organize posts based on categories
- Remove the ‘Press This’ Tool
- How to create plugin list groups?
- Google adsense stats plugin? [closed]
- Custom Fields on User Dashboard?
- Form with response button after on table after submission
- WordPress Plugin and other pages not opening
- Display Any Field fromAdmin Panel in Frontend via Shortcode?
- Plugin Error – Not Sure Where to Go From Here
- How can I hide Dashboard notifications for just one particular plugin?
- Convert WordPress into Event and membership managment software [closed]
- Skewed / slanted button within elementor [closed]
- WP.org acceptable iframe alternative
- I changed .live() to .on() but change is not reflected on the server
- How to find out whether a plugin is used in pages or posts?
- WooCommerce – set session with new cart item meta when updating cart item quantity [closed]
- Trying to add a page template for my custom post type from a plugin, but it will not display in the template dropdown unless file is in theme
- flush_rewrite_rules() not working with update_option_{$option}
- How to get the particular product quantity in orders in Woocommerce [closed]
- plugin dev – minimum base css specificity?
- Using WordPress to build membership Page
- How to generate an all in one WordPress New content, plugin and theme update report on a website? [closed]
- Tutor LMS problem with Paid Memberships Pro [closed]
- Is there a plugin for WordPress for creating ‘Accounts’ where all users who belong to that Account can only see Account data? [closed]
- A server-side hook failed when committing plugin code to SVN
- Custom shortcode for displaying user based on a role parameter
- Help with comments.php
- How to execute plugin and theme updates from a web hook / endpoint?
- WordPress Plugin Insert Html Code with Shortcode
- Content-Security-Policy Headers are there and showing the correct settings, but still getting a refused connection
- Set WordPress Transient Expiration via Variable Value
- Vulnerability Concern From the Plugin or From Not Updating the Plugin?
- PHP Warning: Declaration of aec_contributor_list::form() should be compatible with WP_Widget::form($instance)
- How to remove index meta tag
- don’t call ajax if not plugin page
- How to use the pre_option filter before a plugin loads?
- How I can change the required capability for an admin menu without editing the plugin file?
- Why WP_Screeen doesn’t show all options with admin_body_class
- wp_dequeue_script for a Plugin
- Location dependent rendering of locations? [closed]
- Creating a widget and missing jQuery
- SMTP Error: Could not authenticate [closed]
- How to add support for caching plugins for my own plugin?
- My custom php file keeps 404’ing in WordPress when I call it. What am I missing?
- Use $variable from file1.php in file2.php (different file paths)
- How to import WordPress site to new WordPress site?
- How can I automatically download all images from all imported posts, place them on my new host, and replace all the links
- Need to replace Currency Shortforms
- Looking for a free quiz plugin which saves the candidates answers for review [closed]
- wp_enqueue_scripts
- Why Does The `auto_update_plugin` Hook Disable Management?
- Return multiple values in a shortcode attribute
- Allowing .rfa Files In Media Upload [duplicate]
- Sanitizing file & directory form input
- What’s my optimal choice for remote access to my localhost sites?
- Some WordPress Posts are automatically becoming comments on other Posts