
























The admin bar in Wordpress can be annoying sometimes, hiding some of your design and even having certain side effects you don’t want. With this snippet, you can turn it off:
function my_function_admin_bar() {
return false;
}add_filter( 'show_admin_bar' , 'my_function_admin_bar');
Add this part to your functions.php or include it in a seperate plugin
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。