kollapsminoriteten/wp-includes/date.php

15 lines
400 B
PHP
Raw Normal View History

2019-11-02 10:38:58 +01:00
<?php
/**
* Class for generating SQL clauses that filter a primary query according to date.
*
2019-11-15 22:59:44 +01:00
* This file is deprecated, use 'wp-includes/class-wp-date-query.php' instead.
2019-11-02 10:38:58 +01:00
*
2019-11-15 22:59:44 +01:00
* @deprecated 5.3.0
* @package WordPress
2019-11-02 10:38:58 +01:00
*/
2022-12-15 17:47:31 +01:00
_deprecated_file( basename( __FILE__ ), '5.3.0', WPINC . '/class-wp-date-query.php' );
2019-11-02 10:38:58 +01:00
2019-11-15 22:59:44 +01:00
/** WP_Date_Query class */
2022-12-15 17:47:31 +01:00
require_once ABSPATH . WPINC . '/class-wp-date-query.php';