Is it possible to create a short admin url for options page?
The default admin url is:
domain.com/wp-admin/admin.php?page=options-page-slug
And i want it to be:
domain/wp-admin/options-page-slug
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You mean, wp-admin/admin.php?page=options-page-slug?
But yes, you can use the rewrite API:
add_action( 'init', function () {
// The following adds the rule into the database.
add_rewrite_rule(
'wp-admin/options-page-slug(/|$)',
'wp-admin/admin.php?page=options-page-slug',
'top'
);
} );
Or alternatively, just add this before the WordPress rules in your .htaccess file:
RewriteRule ^wp-admin/options-page-slug(/|$) /wp-admin/admin.php?page=options-page-slug [QSA,L]
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0