[an error occurred while processing this directive] [an error occurred while processing this directive]

WordPress – Customiser la page de login

Pour customiser la page de login on peut ajouter au thème un fichier custom.css dans lequel on ajoutera tous les CSS propre à la page de login.

Voici le code à placer dans le fichier function.php dans le répertoire du thème enfant

    
function blog-child_custom_login() {
    echo '<link rel="stylesheet" type="text/css" href="custom.css" />';
}
add_action('login_head', 'blog-child_custom_login');
    
    

x

function blog-child_custom_login() {
echo '<link rel="stylesheet" type="text/css" href="custom.css" />';
}
add_action('login_head', 'blog-child_custom_login');

Publier par Michel PIALLIER dans Wordpress - Installation Commentaires fermés sur WordPress – Customiser la page de login
[an error occurred while processing this directive]
[an error occurred while processing this directive]
[an error occurred while processing this directive]