Skip to content

Instantly share code, notes, and snippets.

View twobyte's full-sized avatar
😋

Toby Trembath twobyte

😋
View GitHub Profile
@twobyte
twobyte / get-admin-path.php
Created October 23, 2020 14:01 — forked from andrezrv/get-admin-path.php
Obtain path to wp-admin directory in WordPress.
<?php
/**
* Obtain the path to the admin directory.
*
* @return string
*/
function my_plugin_get_admin_path() {
// Replace the site base URL with the absolute path to its installation directory.
$admin_path = str_replace( get_bloginfo( 'url' ) . '/', ABSPATH, get_admin_url() );