Last active
April 11, 2019 07:03
-
-
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
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 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