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

自定义左边信息
function admin_footer_text ($text) {
_e($text.’Developed by Wuwb.me.’, ‘bonestheme’ );
}
add_filter( ‘admin_footer_text’, ‘App\Theme\Setup\admin_footer_text’ );
自定义右边信息
function update_footer($text){
_e($text.’ WuWenbin‘, ‘bonestheme’ );
}
add_filter(‘update_footer’, ‘App\Theme\Setup\update_footer’, 11);

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注