Viewing 2 replies - 1 through 2 (of 2 total)
  • Try adding this to your child-theme functions.php :

    add_filter('tc_head_display', 'remove_pingback');
    function remove_pingback($html){
        return preg_replace('|<link rel="pingback".*?/>|','',$html);
    }

    Thread Starter emanueleleg

    (@emanueleleg)

    Great, it works very well,
    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Clean up the head’ is closed to new replies.