PHP Wordpress:通过functions.php自定义wp-login.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress:通过functions.php自定义wp-login.php相关的知识,希望对你有一定的参考价值。
/** ******** ******** ******** ******** ******** ******** ******** ********
* TITLE: Beautify the Log-in Page
* DESCRIPTION: Make the Log-in Page PRetty
* 1: Change out Logo
* 2: Change out URL
* 3: Change out Title
*
* http://codex.wordpress.org/Customizing_the_Login_Form
*/
function my_login_logo() { ?>
<style type="text/css">
body.login div#login h1 a {
background-image: url(/wp-content/uploads/2014/07/logo-80x80.png);
background-size: 80x 80px;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'my_login_logo' );
function my_login_logo_url() {
return home_url();
}
add_filter( 'login_headerurl', 'my_login_logo_url' );
function my_login_logo_url_title() {
return 'GuitarPick';
}
add_filter( 'login_headertitle', 'my_login_logo_url_title' );
function no_errors_please(){
return 'Please Try Again';
}
add_filter( 'login_errors', 'no_errors_please' );
以上是关于PHP Wordpress:通过functions.php自定义wp-login.php的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress - 更改 function.php 中的插件选项
Wordpress主题文件夹中的functions.php作用说明
php [WORDPRESS] - 脚注中的Wordpress动态版权日期#wp #footer #wordpress#functions.php
Wordpress - 如何通过其分类过滤添加的自定义帖子?
在functions.php中获取wordpress帖子ID
在 functions.php (WordPress) 中包含 ACF