Hello,
I want to remove information on the topic.
In a previous post you reply that the solution is to put the following code in functions.php of the child theme:
remove_action (‘wp_head’, ‘avia_debugging_info’, 1000);
However, it is not working. Can you help me?
Thank you.
Hi Alexandre!
Try with this code:
function avia_remove_debug() {
remove_action('wp_head','avia_debugging_info',1000);
}
add_action( 'init', 'avia_remove_debug');
Cheers!
Josue