QUITAR EL ADMINBAR DE WORDPRESS


/ Published in: PHP
Save to your folder(s)

Agregar esta funcion al funcstion.php


Copy this code and paste it in your HTML
  1. function my_function_admin_bar(){
  2. return false;
  3. }
  4. add_filter( 'show_admin_bar' , 'my_function_admin_bar');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.