一、自定义后台欢迎页面
//自定义欢迎面板
function rc_my_welcome_panel() {
?>
<script type=”text/javascript”>
/* Hide default welcome message */
jQuery(document).ready( function($)
{
$(‘div.welcome-panel-content’).hide();
});
</script>
<div class=”custom-welcome-panel-content”>
<h3><?php _e( ‘欢迎使用国威致远为您提供的网站技术服务’ ); ?></h3>
<p class=”about-description”><?php _e( ‘我们为您提供域名注册、空间租赁、网站备案、网站建设、微信营销、设计印刷、电商代运营等服务。’ ); ?></p>
<div class=”welcome-panel-column-container”>
<div class=”welcome-panel-column”>
<h4><?php _e( “技术支持QQ:93547942” ); ?></h4>
</div>
</div>
</div>
<?php
}
add_action( ‘welcome_panel’, ‘rc_my_welcome_panel’ );
/**
* 移除wordpress后台顶部左上角的W图标
*/
function annointed_admin_bar_remove() {
global $wp_admin_bar;
/* Remove their stuff */
$wp_admin_bar->remove_menu(‘wp-logo’);
}
add_action(‘wp_before_admin_bar_render’, ‘annointed_admin_bar_remove’, 0);
二、最简单快速的移除后台欢迎界面各种工具的代码:
3 4 5 6 7 8 9 10 11 | function disable_dashboard_widgets() { remove_meta_box(‘dashboard_recent_comments’, ‘dashboard’, ‘normal’);//近期评论 remove_meta_box(‘dashboard_recent_drafts’, ‘dashboard’, ‘normal’);//近期草稿 remove_meta_box(‘dashboard_primary’, ‘dashboard’, ‘core’);//wordpress博客 remove_meta_box(‘dashboard_secondary’, ‘dashboard’, ‘core’);//wordpress其它新闻 remove_meta_box(‘dashboard_right_now’, ‘dashboard’, ‘core’);//wordpress概况 remove_meta_box(‘dashboard_incoming_links’, ‘dashboard’, ‘core’);//wordresss链入链接 remove_meta_box(‘dashboard_plugins’, ‘dashboard’, ‘core’);//wordpress链入插件 remove_meta_box(‘dashboard_quick_press’, ‘dashboard’, ‘core’);//wordpress快速发布 } add_action(‘admin_menu’, ‘disable_dashboard_widgets’); |
// Customize your functions
add_filter(‘admin_footer_text’, ‘left_admin_footer_text’);
function left_admin_footer_text($text) {
// 左边信息
$text = ‘<span id=”footer-thankyou”>感谢支持<a href=”#”>国威致远</a>为您创作 技术支持QQ:93547942</span>’;
return $text;
}
/**
* 自定义 WordPress 后台底部的版权和版本信息
*/
add_filter(‘update_footer’, ‘right_admin_footer_text’, 11);
function right_admin_footer_text($text) {
// 右边信息
$text = “3.6.1版本”;
return $text;
}
0 (0%) 好评 | 0 (0%) 中评 | 0 (0%) 差评 |