wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



automatic_feed_links › WordPress Function

Seit2.8.0
Veraltet3.0.0
automatic_feed_links ( $add = true )
Parameter:
  • (bool) $add Optional. Add or remove links. Default true.
    Erforderlich: Nein
    Standard: true
Siehe:
Definiert in:
Codex:

Enable/disable automatic general feed link outputting.



Quellcode

function automatic_feed_links( $add = true ) {
	_deprecated_function( __FUNCTION__, '3.0.0', "add_theme_support( 'automatic-feed-links' )" );

	if ( $add )
		add_theme_support( 'automatic-feed-links' );
	else
		remove_action( 'wp_head', 'feed_links_extra', 3 ); // Just do this yourself in 3.0+.
}