Make WordPress Core


Ignore:
Timestamp:
02/25/2010 08:56:19 AM (15 years ago)
Author:
dd32
Message:

Deprecate automatic_feed_links() in favor of add_theme_support('automatic-feed-links'). Props Viper007Bond. Fixes #12364

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-filters.php

    r13113 r13398  
    169169
    170170// Actions
    171 add_action( 'wp_head',             'wp_enqueue_scripts',             1    );
    172 add_action( 'wp_head',             'feed_links_extra',               3    );
     171add_action( 'wp_head',             'wp_enqueue_scripts',            1     );
     172add_action( 'wp_head',             'feed_links',                    3     );
     173add_action( 'wp_head',             'feed_links_extra',              3     );
    173174add_action( 'wp_head',             'rsd_link'                             );
    174175add_action( 'wp_head',             'wlwmanifest_link'                     );
     
    179180add_action( 'wp_head',             'locale_stylesheet'                    );
    180181add_action( 'publish_future_post', 'check_and_publish_future_post', 10, 1 );
    181 add_action( 'wp_head',             'noindex',                        1    );
    182 add_action( 'wp_head',             'wp_print_styles',                8    );
    183 add_action( 'wp_head',             'wp_print_head_scripts',          9    );
     182add_action( 'wp_head',             'noindex',                       1     );
     183add_action( 'wp_head',             'wp_print_styles',               8     );
     184add_action( 'wp_head',             'wp_print_head_scripts',         9     );
    184185add_action( 'wp_head',             'wp_generator'                         );
    185186add_action( 'wp_head',             'rel_canonical'                        );
Note: See TracChangeset for help on using the changeset viewer.