Created
October 16, 2018 14:13
-
-
Save SteveJonesDev/64bc094b935845a24406933ace260acf to your computer and use it in GitHub Desktop.
WordPress Admin Branding Include
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Admin Branding | |
*/ | |
$admin_branding_url = get_stylesheet_directory() . '/includes/admin-branding.php'; | |
if(file_exists($admin_branding_url)) { | |
include_once($admin_branding_url); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment