Created
December 13, 2023 20:09
-
-
Save Nerd-Rush/2269df3f4a2308a61981720f82e9f655 to your computer and use it in GitHub Desktop.
Add Footer Credit to WordPress Admin
This file contains hidden or 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
function wp_admin_footer_text() { | |
echo '<span style="color:#50575e">Website built by Nerd Rush! For questions or support, please visit our website at <a href="https://nerdrush.com/" target="blank" rel="noopener">www.nerdrush.com</a></span>'; | |
} | |
add_filter('admin_footer_text', 'wp_admin_footer_text'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment