get_to_ping [ WordPress Function ]
get_to_ping ( $post_id )
| Parameters: |
|
| Uses: |
|
| Returns: |
|
| Defined at: |
|
Retrieve URLs that need to be pinged.
Source
<?php
function get_to_ping($post_id) {
global $wpdb;
$to_ping = $wpdb->get_var( $wpdb->prepare( "SELECT to_ping FROM $wpdb->posts WHERE ID = %d", $post_id ));
$to_ping = sanitize_trackback_urls( $to_ping );
$to_ping = preg_split('/\s/', $to_ping, -1, PREG_SPLIT_NO_EMPTY);
$to_ping = apply_filters('get_to_ping', $to_ping);
return $to_ping;
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- Function Reference/get to ping « WordPress Codex
Uses global: (object) $wpdb to read 'to_ping' field from _posts table from database. Uses: apply_filters() on 'get_to_ping' on the URLs that need to be pinged.
codex.wordpress.org - How to Get to Ping An, China, Rice Terraces - DIRECT bus! - Lonely ...
Hi there. I couldn't find a lot of good/easy information about how to get to Ping An and the rice terraces - so - I wanted to share with you what I ...
www.lonelyplanet.com - PING Golf Free Factory Tour Photos - Club Fittings at PING in Phoenix
If you can get to PING or your pro shop has a PING demo day, I highly recommend getting fitted by a professional. If you'd like to have some information ...
phoenix.about.com - 常用函数-get_to_ping() | WordPress啦!
常用函数-get_to_ping(). Kage 星期三,2009/04/15 14:19 0条评论. 常用函数- get_to_ping(). 说明. 检索需要被引用的URL. 用法. <?php get_to_ping( $post_id ) ? > ...
www.wordpress.la