jetpack_import_rest_get_start

jetpack_import_rest_get_start

Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.14.5

apply_filters('jetpack_import_rest_get_start') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-import/src/endpoints/class-start.php line 77
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
        foreach ( $items as $name => $value ) {
            /**
             * Filters the value of a item recognized by the REST API.
             */
            $response[ $name ] = apply_filters( 'jetpack_import_rest_get_start', $value, $name, $request );
        }
     
        return $response;
    }
     
    /**