xmlrpc_getposttitle

函数
xmlrpc_getposttitle ( $content )
参数
  • (string) $content XMLRPC XML Request content
    Required:
返回值
  • (string) Post title
定义位置
相关方法
xmlrpc_getpostcategoryxmlrpc_removepostdataget_post_timewp_get_post_termssingle_post_title
引入
0.71
弃用
-

xmlrpc_getposttitle: 这个函数也是WordPress XML-RPC API的一部分,用来检索一个文章的标题,由文章ID指定。

从XMLRPC的XML中获取文章的标题。

如果标题元素不是XML的一部分,那么将使用$post_default_title中的默认文章标题来代替。

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

常见问题

FAQs
查看更多 >