1
I am changing the logo of the Wordpress ligin screen. For this I am using PHP to filter the function by changing the CSS. But since I have several services like this, I need to do it dynamically, that is, use the same code for several websites. Then it’ll stay that way:
function my_f(){
echo '<style type="text/css">
h1 a{background-image:url( php tem que ser aqui "exemplo: function();" )
}
</style>';
}
This is generating a problem, because php is seeing it as string.
You might be interested in this: https://wordpress.org/plugins/login-logo/
– Ricardo Moraleida