Skip to content

Instantly share code, notes, and snippets.

@sushinger
Forked from hostz-frank/functions.php
Created November 3, 2019 12:19
Show Gist options
  • Save sushinger/27f9cd8190824dad07fcf45d22d2aa86 to your computer and use it in GitHub Desktop.
Save sushinger/27f9cd8190824dad07fcf45d22d2aa86 to your computer and use it in GitHub Desktop.
Impressum-Link neben Datenschutz-Link auf der wp-login.php
/**
* 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 . '&nbsp; | &nbsp;<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