WordPress函数文档generic_ping()
将Pings发送给所有ping网站服务 描述 译文 将 pings 发送给所有ping网站服务 原文 Send…
将Pings发送给所有ping网站服务
描述
译文
将 pings 发送给所有ping网站服务
原文
Sends pings to all of the ping site services.
用法
<?php generic_ping( $post_id ) ?>
参数
$post_id
(integer) (可选) Post ID. Only used as a return velue.
默认值: 0
返回值
(integer)
Returns $post_id unaltered.
注意
- The $post_id and return values do not have to be an integer data types, but in WordPress $post_id is always an integer data type.
- 使用到: get_option() to get all ping sites.
- 使用到: weblog_ping() for each ping site.
历史
添加于 版本: 1.2.0
源文件
generic_ping() 函数的代码位于 wp-includes/comment.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Sends pings to all of the ping site services.
*
* @since 1.2.0
*
* @param int $post_id Post ID.
* @return int Same as Post ID from parameter
*/
function generic_ping( $post_id = 0 ) {
$services = get_option(‘ping_sites’);
$services = explode(“
“, $services);
foreach ( (array) $services as $service ) {
$service = trim($service);
if ( ” != $service )
weblog_ping($service);
}
return $post_id;
}
|
- 原文:http://codex.wordpress.org/Function_Reference/generic_ping
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!