loading07011

We're a digital studio that believe
in the power of great ideas.

error:
/** 205 * 移除WordPress后台底部左文字 206 * https://themebetter.com/wordpress-delete-copyright.html 207 */ 208 add_filter('admin_footer_text', '_admin_footer_left_text'); 209 function _admin_footer_left_text($text) { 210 $text = ''; 211 return $text; 212 } 213 ​ 214 /** 215 * 移除WordPress后台底部右文字 216 * https://themebetter.com/wordpress-delete-copyright.html 217 */ 218 add_filter('update_footer', '_admin_footer_right_text', 11); 219 function _admin_footer_right_text($text) { 220 $text = ''; 221 return $text; 222 } 223 ​