generic_ping( int $post_id )
Sends pings to all of the ping site services.
描述
参数
- $post_id
-
(int)
(Required)
Post ID.
返回值
(int) Same as Post ID from parameter
源代码
File: wp-includes/comment.php
function generic_ping( $post_id = 0 ) {
$services = get_option('ping_sites');
$services = explode("\n", $services);
foreach ( (array) $services as $service ) {
$service = trim($service);
if ( '' != $service )
weblog_ping($service);
}
return $post_id;
}
更新日志
Version | 描述 |
---|---|
1.2.0 | Introduced. |
相关函数
Uses
-
wp-includes/option.php:
get_option() -
wp-includes/comment.php:
weblog_ping()
Used By
-
wp-includes/comment.php:
do_all_pings()
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈