From c4068bc95bd05fb7482c80f94f2bc1a6abe260d6 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 6 Sep 2013 17:18:33 +0000 Subject: [PATCH] Inline docs for hooks in MagPie. props natejacobs. see #25229. git-svn-id: https://develop.svn.wordpress.org/trunk@25286 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/rss.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/rss.php b/src/wp-includes/rss.php index cd08ec99e6..ab6ead0f2c 100644 --- a/src/wp-includes/rss.php +++ b/src/wp-includes/rss.php @@ -10,6 +10,7 @@ * * @package External * @subpackage MagpieRSS + * @deprecated 3.0.0 Use SimplePie instead. */ /** @@ -17,10 +18,13 @@ */ _deprecated_file( basename( __FILE__ ), '3.0', WPINC . '/class-simplepie.php' ); -/* - * Hook to use another RSS object instead of MagpieRSS +/** + * Fires before MagpieRSS is loaded, to optionally replace it. + * + * @since 2.3.0 + * @deprecated 3.0.0 */ -do_action('load_feed_engine'); +do_action( 'load_feed_engine' ); /** RSS feed constant. */ define('RSS', 'RSS');