do_all_pings()

In this article

Performs all pingbacks, enclosures, trackbacks, and sends to pingback services.

Source

if ( is_wp_error( $response ) ) {
	return false;
}

$contents = wp_remote_retrieve_body( $response );

$pingback_link_offset_dquote = strpos( $contents, $pingback_str_dquote );
$pingback_link_offset_squote = strpos( $contents, $pingback_str_squote );

Changelog

VersionDescription
5.6.0Introduced do_all_pings action hook for individual services.
2.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.