weblog_ping

函数
weblog_ping ( $server = '', $path = '' )
参数
  • (string) $server Host of blog to connect to.
    Required:
    Default: (empty)
  • (string) $path Path to send the ping.
    Required:
    Default: (empty)
定义位置
相关方法
get_blog_optionbloginfowp_loginadd_blog_optiondelete_blog_option
引入
1.2.0
弃用
-

weblog_ping: 这个函数用于通知一个外部服务列表,即网站已经被更新。它不需要任何参数,依靠WordPress选项中指定的服务列表。

发出一个pingback。

function weblog_ping( $server = '', $path = '' ) {
	include_once ABSPATH . WPINC . '/class-IXR.php';
	include_once ABSPATH . WPINC . '/class-wp-http-ixr-client.php';

	// Using a timeout of 3 seconds should be enough to cover slow servers.
	$client             = new WP_HTTP_IXR_Client( $server, ( ( ! strlen( trim( $path ) ) || ( '/' === $path ) ) ? false : $path ) );
	$client->timeout    = 3;
	$client->useragent .= ' -- WordPress/' . get_bloginfo( 'version' );

	// When set to true, this outputs debug messages by itself.
	$client->debug = false;
	$home          = trailingslashit( home_url() );
	if ( ! $client->query( 'weblogUpdates.extendedPing', get_option( 'blogname' ), $home, get_bloginfo( 'rss2_url' ) ) ) { // Then try a normal ping.
		$client->query( 'weblogUpdates.ping', get_option( 'blogname' ), $home );
	}
}

常见问题

FAQs
查看更多 >