wordpress后台登录页面样式
刚刚接触WordPress时,很多朋友都不喜欢自带的后台登录页面样式,今天就给大家分享一个重写的样式,如下图:
首先将文件放在主题目录中,然后加载到登录页面,具体代码如下:
function lb_enqueue_login_style() { wp_enqueue_style( login', get_template_directory_uri() . '/login.css' ); } add_action( 'login_enqueue_scripts', 'lb_enqueue_login_style' );
这时刷新登录页面应该就成功了,如果需要更换logo可以百度一下具体方法
[buttons text=”下载附件” url=”https://github.com/themenote/wp-login-css.git” color=”warning” border=”no” target=”yes” ]