本站WordPress系统修改记录

{{ time }}

1.在John Resig: 主题页脚 (footer.php) 添加了百度提交的script

2.John Resig: 主题页眉 (header.php) 修改了 title标签中 - 前后的内容的顺序

3.WordPress的自定义CSS中代码更新为如下_190409

.contact-menu>ul
{
display:none;
}

.tagcloud>a
{
white-space:nowrap;
}

#wp-calendar
{
	font-size:1.3em;
}

.menu
{
	white-space:nowrap;
}

.menu-item > a{
line-height: 1.42857143;
 text-decoration: none;
}

.menu-item > a:hover{
 text-decoration: underline;
}

4.在wp-config.php添加了如下代码,用于设置https时,防止过多的重定向

$_SERVER['HTTPS'] = 'on';
define('FORCE_SSL_LOGIN', true);
define('FORCE_SSL_ADMIN', true);