春节过去了,想着整理下比较常用的几段代码分享给大家,让新年你的网页更加个性化更加美观更加迅速!另外在这给大家拜年啦!大家龙年吉祥,发财发财啦!
更改登陆LOGO
function custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url('.get_bloginfo('template_directory').'/images/login_logo.png) !important; }
</style>';
}
add_action('login_head', 'custom_login_logo');
放在functions.php中,如果你比较在意会员体验的话,这个代码是必不可少的。
取消 Google Analytics
if( !is_preview()):
# Google Analytics Code #
endif;
Google Analytics这个就不用多说了,我们对待搜索引擎可不能大意。同样也是放在functions.php中
网站维护代码
function maintenace_mode() {
if ( !current_user_can( 'administrator' ) ) {
wp_die('The site will be up soon.');
}
}
add_action('get_header', 'maintenace_mode');
if ( !current_user_can('administrator') ) {
add_action( 'init', create_function( '$a', "remove_action( 'init', 'wp_version_check' );" ), 2 );
add_filter( 'pre_option_update_core', create_function( '$a', "return null;" ) );
}
$your_custom_stylesheet = 'css/custom-editor-style.css';
add_editor_style($your_custom_stylesheet);
分类:新闻资讯