闲来无事就喜欢折腾这些小玩意,很简单也就不多解释了,代码来源于网络。
//自定义登录页面的LOGO图片 function my_custom_login_logo() { echo ''; } add_action('login_head', 'my_custom_login_logo'); //自定义登录页面的LOGO链接为首页链接 add_filter('login_headerurl', create_function(false,"return get_bloginfo('url');")); //自定义登录界面LOGO链接为任意链接 function custom_loginlogo_url($url) { return 'https://www.mrwu.me'; //修改URL地址 } add_filter( 'login_headerurl', 'custom_loginlogo_url' ); //自定义登录页面的LOGO提示为网站名称 add_filter('login_headertitle', create_function(false,"return get_bloginfo('name');")); //自定义登录页面LOGO提示为任意文本 function custom_loginlogo_desc($url) { return 'Mr.Wu博客'; //修改文本信息 } add_filter( 'login_headertitle', 'custom_loginlogo_desc' ); //BING美图作为登录页面背景 function custom_login_head(){ $str=file_get_contents('https://cn.bing.com/HPImageArchive.aspx?idx=0&n=1'); if(preg_match("/(.+?)<\/url>/ies",$str,$matches)){ $imgurl='https://cn.bing.com'.$matches[1]; echo''; }} add_action('login_head', 'custom_login_head');
本文作者为Mr.Wu,转载请注明,尊守博主劳动成果!
由于经常折腾代码,可能会导致个别文章内容显示错位或者别的 BUG 影响阅读; 如发现请在该文章下留言告知于我,thank you !