wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



automatic_feed_links › WordPress Function

Da2.8.0
Deprecato3.0.0
automatic_feed_links ( $add = true )
Parametri:
  • (bool) $add Optional. Add or remove links. Default true.
    Richiesto: No
    Default: true
Vedi:
Definito a:
Codex:

Enable/disable automatic general feed link outputting.



Sorgenti

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+.
}