×
FalconChen
2020-05-06 13:55
#daily tips# 自定义wp-login.php 页的 logo
php 代码片断
// functions.php
add_action('login_enqueue_scripts', function(){
	wp_enqueue_style('login-styles', get_stylesheet_directory_uri().'/login.css');
});


//login.css, place in (child) theme folder
body .login h1 a {
  background-image: url('path/to/custom-logo.png');
}
0

暂无评论