We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Filters the queried object.
/** * Filters the queried object. * * @param WP_Term|\WP_Post_Type|\WP_Post|\WP_User|\WP_Comment $queried_object * @return WP_Term|\WP_Post_Type|\WP_Post|\WP_User|\WP_Comment The filtered value. */ function my_activitypub_queried_object_callback( WP_Term|\WP_Post_Type|\WP_Post|\WP_User|\WP_Comment $queried_object = null ) { // Your code here. return null; } add_filter( 'activitypub_queried_object', 'my_activitypub_queried_object_callback' );
WP_Term|\WP_Post_Type|\WP_Post|\WP_User|\WP_Comment|null
$queried_object
\apply_filters( 'activitypub_queried_object', $queried_object )
← All Hooks