Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #427457

    Hallo,

    wir wollen die xmlrpc.php URL aus dem header entfernen.
    Diese Funktion ist in der Datei enfold/framework/php/function-set-avia-frontend.php auf Zeile 454 – 469 geregelt.
    Mit false kann ich die URL ausschließen, muss aber bei jedem Update ändern.
    Ich würde das gerne in der child functions.php regeln.

    Habt Ihr eine function dafür?

    Grüße
    Biggy

    #428328

    Hi Biggy!

    To use it in a child theme you would just need to copy it to your child theme functions.php file.

    if(!function_exists('avia_set_pingback_tag'))
    {
        /**
         * generates the html pingback head tag
         * @return string the pingback head tag
         */
        function avia_set_pingback_tag($echo = true)
        {
            $output = apply_filters('avf_pingback_head_tag', '<link rel="pingback" href="'.get_bloginfo( 'pingback_url' ).'" />'."\n");
    
            if($echo) echo $output;
            if(!$echo) return $output;
        }
        
        add_action( 'wp_head', 'avia_set_pingback_tag', 10, 0 );
    }

    You can then change it to whatever you need.

    Best regards,
    Elliott

    #428386

    Hi Elliott,

    we suspected it ….
    Thanks for your Help.
    We recommend you

    You are a suberp company!

    Regards
    Biggy

    PS: You can close the topic!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘xmlrpc.php URL entfernen’ is closed to new replies.