Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




add_ping [ WordPress Function ]

add_ping ( $post_id, $uri )
Parameters:
  • (int) $post_id Post ID.
  • (string) $uri Ping URI.
Uses:
  • $wpdb
Returns:
  • (int) How many rows were updated.
Defined at:



Add a URL to those already pung.

Source


<?php
function add_ping($post_id$uri) {
    global 
$wpdb;
    
$pung $wpdb->get_var$wpdb->prepare"SELECT pinged FROM $wpdb->posts WHERE ID = %d"$post_id ));
    
$pung trim($pung);
    
$pung preg_split('/\s/'$pung);
    
$pung[] = $uri;
    
$new implode("\n"$pung);
    
$new apply_filters('add_ping'$new);
    
// expected_slashed ($new)
    
$new stripslashes($new);
    return 
$wpdb->update$wpdb->posts, array( 'pinged' => $new ), array( 'ID' => $post_id ) );
}
?>

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics