Skip to content

Instantly share code, notes, and snippets.

@kasparsd
Created May 1, 2025 16:00
Show Gist options
  • Save kasparsd/3134a909ba6cebd7e3ee524124d02ff7 to your computer and use it in GitHub Desktop.
Save kasparsd/3134a909ba6cebd7e3ee524124d02ff7 to your computer and use it in GitHub Desktop.
<?php
add_action(
'login_head',
function () {
$site_icon_url = get_site_icon_url();
if ( ! empty( $site_icon_url ) ) {
printf(
'<style type="text/css">
.login h1 a {
background-image:url("%s");
border-radius:50%%;
}
</style>',
esc_url( $site_icon_url )
);
}
},
100
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment