Skip to content

Instantly share code, notes, and snippets.

@Nerd-Rush
Created December 13, 2023 20:09
Show Gist options
  • Save Nerd-Rush/2269df3f4a2308a61981720f82e9f655 to your computer and use it in GitHub Desktop.
Save Nerd-Rush/2269df3f4a2308a61981720f82e9f655 to your computer and use it in GitHub Desktop.
Add Footer Credit to WordPress Admin
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