Skip to content

Instantly share code, notes, and snippets.

@trueqap
Created January 31, 2018 07:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save trueqap/00e4fc22de51df26bed85072034978ca to your computer and use it in GitHub Desktop.
WordPress admin mappa átnevezése
<?php
function my_custom_admin_url($path) {
return str_replace('wp-admin', 'beallitasok', $path);
}
add_filter('admin_url', 'my_custom_admin_url');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment