Skip to content

Instantly share code, notes, and snippets.

@WordPress-Handbuch
Last active April 11, 2019 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WordPress-Handbuch/145d21b8a26c6a7be55744303b0fb51c to your computer and use it in GitHub Desktop.
Save WordPress-Handbuch/145d21b8a26c6a7be55744303b0fb51c to your computer and use it in GitHub Desktop.
Exchange the backend WordPress note in the footer with an own message, via filter hook in functions.php
function wh_wordpress_backend_footer () {
echo 'WordPress sauber installiert und konfiguriert dank des umfassenden und sagenhaften <a href="https://wordpress-handbuch.com" target="_blank">WordPress-Handbuchs</a></p>';
}
add_filter('admin_footer_text', 'wh_wordpress_backend_footer');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment