AtomParser::map_attrs( string $k, string $v )

Map attributes to key=”val”


Description Description


Parameters Parameters

$k

(string) (Required) Key

$v

(string) (Required) Value


Top ↑

Return Return

(string)


Top ↑

Source Source

File: wp-includes/atomlib.php

	public static function map_attrs($k, $v) {
		return "$k=\"$v\"";
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.