-
-
Notifications
You must be signed in to change notification settings - Fork 11
pubsubhubbub_hub_urls
github-actions[bot] edited this page Jan 2, 2026
·
2 revisions
DEPRECATED This hook was deprecated in version 4.0.0. Use
websub_hub_urlsinstead.
Filter the list of hub URLs to publish updates to.
/**
* Filter the list of hub URLs to publish updates to.
*
* @param array $hub_urls
* @param string $4_0_0
* @param string $websub_hub_urls
* @return array The filtered value.
*/
function my_pubsubhubbub_hub_urls_callback( array $hub_urls, string $4_0_0, string $websub_hub_urls ) {
// Your code here.
return $hub_urls;
}
add_filter( 'pubsubhubbub_hub_urls', 'my_pubsubhubbub_hub_urls_callback', 10, 3 );-
array$hub_urlsList of hub URLs. -
string$4_0_0 -
string$websub_hub_urls
\apply_filters_deprecated( 'pubsubhubbub_hub_urls', array( $hub_urls ), '4.0.0', 'websub_hub_urls' )