wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



generic_ping › WordPress Function

Seit1.2.0
Veraltetn/v
generic_ping ( $post_id = 0 )
Parameter:
  • (int) $post_id Post ID.
    Erforderlich: Nein
    Standard:
Gibt zurück:
  • (int) Same post ID as provided.
Definiert in:
Codex:

Sends pings to all of the ping site services.



Quellcode

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;
}