do_all_pings() WordPress Function

The do_all_pings() function is a WordPress function that is used to ping all of the sites in your blogroll. This function is useful for keeping your blogroll up-to-date and for letting other blogs know that you have updated your blog.

do_all_pings() #

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


Source

File: wp-includes/comment.php

function do_all_pings() {
	/**
	 * Fires immediately after the `do_pings` event to hook services individually.
	 *
	 * @since 5.6.0
	 */
	do_action( 'do_all_pings' );
}


Top ↑

Changelog

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

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More