Make WordPress Core

Changeset 12484


Ignore:
Timestamp:
12/22/2009 12:48:40 PM (15 years ago)
Author:
westi
Message:

Pass the url to the 'wp_feed_cache_transient_lifetime' filter to give more context.
Allow plugins to set extra options on SimplePie using the new 'wp_feed_options' action.
Fixes #11117 props nacin.

File:
1 edited

Legend:

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

    r12197 r12484  
    525525    $feed->set_cache_class('WP_Feed_Cache');
    526526    $feed->set_file_class('WP_SimplePie_File');
    527     $feed->set_cache_duration(apply_filters('wp_feed_cache_transient_lifetime', 43200));
     527    $feed->set_cache_duration(apply_filters('wp_feed_cache_transient_lifetime', 43200, $url));
     528    do_action_ref_array( 'wp_feed_options', array( &$feed, $url ) );
    528529    $feed->init();
    529530    $feed->handle_content_type();
Note: See TracChangeset for help on using the changeset viewer.