欢迎来到淘码网(TMA.CN)

wordpress后台去版权,去官方新闻,自定义文字介绍汇总

价格: ¥ 199 积分可抵¥ 1

最后更新: 2020-07-14 10:08:55

演示地址: 点击查看

安装费: 免费

分类
类 型
品 牌
语 言
数据库
是否加密
是否授权
大小
1 MB
发货方式
自动发货
下载方式
远程下载
安装方式
操作系统
运行环境
伪静态
备注说明

一、自定义后台欢迎页面

//自定义欢迎面板
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);

二、最简单快速的移除后台欢迎界面各种工具的代码:

把下面的代码扔到functions.php 中就可以了,你可以自己选择去掉哪些。

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’);

自定义 WordPress 后台底部的版权和版本信息

// 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%)

差评

  • 会员中心
  • 浏览记录
  • 我的订单
  • 我的收藏
  • 在线客服

    点击这里给我发消息 点击这里给我发消息

    官方微信

    仅处理投诉、举报及平台使用问题;
    商品问题请咨询商家客服!

  • 意见反馈
  • 返回顶部
浏览记录