Make WordPress Core


Ignore:
Timestamp:
02/25/2010 11:09:34 AM (15 years ago)
Author:
dd32
Message:

Restore backwards compatibility in automatic_feed_links() to deregister the extra feeds. Props Viper007Bond. See #12364

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/deprecated.php

    r13398 r13399  
    24152415
    24162416/**
    2417  * Enable automatic general feed link outputting.
     2417 * Enable/disable automatic general feed link outputting.
    24182418 *
    24192419 * @since 2.8.0
    24202420 * @deprecated 3.0.0
    24212421 * @deprecated Use add_theme_support( 'automatic-feed-links' )
    2422  */
    2423 function automatic_feed_links() {
     2422 *
     2423 * @param boolean $add Optional, default is true. Add or remove links. Defaults to true.
     2424 */
     2425function automatic_feed_links( $add = true ) {
    24242426    _deprecated_function( __FUNCTION__, '3.0', "add_theme_support( 'automatic-feed-links' )" );
    2425     add_theme_support( 'automatic-feed-links' );
    2426 }
     2427
     2428    if ( $add )
     2429        add_theme_support( 'automatic-feed-links' );
     2430    else
     2431        remove_action( 'wp_head', 'feed_links_extra', 3 ); // Just do this yourself in 3.0+
     2432}
Note: See TracChangeset for help on using the changeset viewer.