wpseek.com
A WordPress-centric search engine for devs and theme authors



xmlrpc_getposttitle › WordPress Function

Since0.71
Deprecatedn/a
xmlrpc_getposttitle ( $content )
Parameters:
  • (string) $content XML-RPC XML Request content.
    Required: Yes
Returns:
  • (string) Post title.
Defined at:
Codex:

Retrieves post title from XML-RPC XML.

If the title element is not found in the XML, the default post title from the $post_default_title global will be used instead.


Source

function xmlrpc_getposttitle( $content ) {
	global $post_default_title;
	if ( preg_match( '/<title>(.+?)<\/title>/is', $content, $matchtitle ) ) {
		$post_title = $matchtitle[1];
	} else {
		$post_title = $post_default_title;
	}
	return $post_title;
}