wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



do_feed_rss2 › WordPress Function

Od2.1.0
Przestarzałyn/a
do_feed_rss2 ( $for_comments )
Parametry:
  • (bool) $for_comments True for the comment feed, false for normal feed.
    Wymagane: Tak
Zobacz:
Zdefiniowane na:
Codex:

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



Źródło

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' );
	}
}