wordpress基础操作
- 添加favoriteicon
在wp-content/themes/YOURTHEM/header.php
中添加下面语句,然后把favicon.ico文件放置到网站根目录<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
- 添加统计代码
在wp-content/themes/YOURTHEM/footer.php
中添加对应的网站js代码即可
- 在wp-content/themes/YOURTHEM/footer.php 允许友链操作功能
add_filter('pre_option_link_manager_enabled','__return_true');
- 网站居中对齐
在wp-content/themes/YOURTHEM/style.css 最后添加一行
#page {margin:0 auto;}