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' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.6.0 | Introduced do_all_pings action hook for individual services. |
2.1.0 | Introduced. |