-
-
Save macbaydigital/27f9cd8190824dad07fcf45d22d2aa86 to your computer and use it in GitHub Desktop.
Impressum-Link neben Datenschutz-Link auf der wp-login.php
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
/** | |
* Impressum-Link zum Privacy Policy Link auf Login-Seite hinzufügen (wp-login.php). | |
*/ | |
add_filter( 'the_privacy_policy_link', function( $link, $privacy_policy_url ) { | |
return $link . ' | <a href="/impressum/">Impressum</a>'; | |
}, 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment