On this page
MagpieRSS::concat( $str1, $str2 = "" )
Source
File: wp-includes/rss.php. View all references
function concat (&$str1, $str2="") {
if (!isset($str1) ) {
$str1="";
}
$str1 .= $str2;
}
Related
Used By
| Used By | Description |
|---|---|
| MagpieRSS::append_content() wp-includes/rss.php | |
| MagpieRSS::append() wp-includes/rss.php |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/magpierss/concat