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



do_feed_rss2 › WordPress Function

Da2.1.0
Deprecaton/a
do_feed_rss2 ( $for_comments )
Parametri:
  • (bool) $for_comments True for the comment feed, false for normal feed.
    Richiesto:
Vedi:
Definito a:
Codex:

Loads either the RSS2 comment feed or the RSS2 posts feed.



Sorgenti

function do_feed_rss2( $for_comments ) {
	if ( $for_comments ) {
		load_template( ABSPATH . WPINC . '/feed-rss2-comments.php' );
	} else {
		load_template( ABSPATH . WPINC . '/feed-rss2.php' );
	}
}