光说有毛用


wordpress基础操作

· by admin · Read in about 1 min · (26 Words)

  1. 添加favoriteicon

在wp-content/themes/YOURTHEM/header.php  中添加下面语句,然后把favicon.ico文件放置到网站根目录

<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />

 

  1. 添加统计代码

在wp-content/themes/YOURTHEM/footer.php 中添加对应的网站js代码即可

 

  1. 在wp-content/themes/YOURTHEM/footer.php 允许友链操作功能
add_filter('pre_option_link_manager_enabled','__return_true');

 

  1.  网站居中对齐

在wp-content/themes/YOURTHEM/style.css 最后添加一行

#page {margin:0 auto;}

 

 

Comments