wpseo_cleanup_tasks

wpseo_cleanup_tasks

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.22.3

apply_filters('wpseo_cleanup_tasks') is found 1 times:

  • /src/integrations/cleanup-integration.php line 166
    		 * Filter: Adds the possibility to add addition cleanup functions.
    		 *
    		 * @param array $additional_tasks Associative array with unique keys. Value should be a cleanup function that receives a limit.
    		 */
    		$additional_tasks = \apply_filters( 'wpseo_cleanup_tasks', [] );
    
    		if ( ! \is_array( $additional_tasks ) ) {
    			return [];
    		}
    
    		foreach ( $additional_tasks as $key => $value ) {