MagpieRSS::concat() WordPress Method

MagpieRSS::concat() is a simple method for concatenating two RSS feeds together. This is useful if you want to display multiple RSS feeds on a single page. Simply pass in the URLs of the two feeds you want to concatenate, and MagpieRSS will do the rest.

MagpieRSS::concat( $str1,  $str2 = "" ) #


Source

File: wp-includes/rss.php

	function concat (&$str1, $str2="") {
		if (!isset($str1) ) {
			$str1="";
		}
		$str1 .= $str2;
	}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.