• Resolved wpapm

    (@wpapm)


    Hi Marcel,

    How can I remove the RSS link to the guestbook from the WP-Head?

    Is there a way that I haven’t seen yet?

    Greetings

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi, this PHP code should do what you want. You can add it in functions.php of your theme, preferably a child theme, or in your own custom plugin.

    /* Remove gwolle feed. */function my_gwolle_gb_rss_init() { remove_action('wp_head', 'gwolle_gb_rss_head', 1); remove_action('init', 'gwolle_gb_rss_init');}add_action( 'init', 'my_gwolle_gb_rss_init', 1 );

    Thread Starter wpapm

    (@wpapm)

    Hi Marcel,

    Thanks! It works fine!

    Greetings

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘disable guestbook rss-feed’ is closed to new replies.