$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>php - Only show search results with if current date is between two dates?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

php - Only show search results with if current date is between two dates?

matteradmin10PV0评论

I have a custom post type which I can set a start and end date in the metadata.

I use the function below to filter the search results and only show results from the post type visitor:

function SearchFilter($query) {
        if ($query->is_search) {
            $query->set('post_type', 'visitor');
        }
        return $query;
    }
add_filter('pre_get_posts', 'SearchFilter');

I have two metadata fields that contains a start date and an end date:

get_post_meta( get_the_ID(), 'visitor-start-date', true ); // Start date
get_post_meta( get_the_ID(), 'visitor-date', true ); // End date

I want to filter the search results to only show results if the current date (today) is between these two dates. The dates are in epoch/unix and looks like this: 1539129600 1546214400

How do I include this in my filter I created above to only show results where todays date is between the start and end date?

I have a custom post type which I can set a start and end date in the metadata.

I use the function below to filter the search results and only show results from the post type visitor:

function SearchFilter($query) {
        if ($query->is_search) {
            $query->set('post_type', 'visitor');
        }
        return $query;
    }
add_filter('pre_get_posts', 'SearchFilter');

I have two metadata fields that contains a start date and an end date:

get_post_meta( get_the_ID(), 'visitor-start-date', true ); // Start date
get_post_meta( get_the_ID(), 'visitor-date', true ); // End date

I want to filter the search results to only show results if the current date (today) is between these two dates. The dates are in epoch/unix and looks like this: 1539129600 1546214400

How do I include this in my filter I created above to only show results where todays date is between the start and end date?

Share Improve this question asked Nov 1, 2018 at 13:11 joq3joq3 3813 silver badges21 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can use meta queries to filter posts according to your needs.

Here is a sample code:

function SearchFilter( $query ) {
    if ( !is_admin() && $query->is_search ) {
        $query->set( 'post_type', 'visitor' );

        $query->set( 'meta_query', array(
            'relation' => 'AND',
            array(
                'key' => 'visitor-start-date',
                'value' => time(),
                'compare' => '<='
            ),
            array(
                'key' => 'visitor-date',
                'value' => time(),
                'compare' => '>='
            ),
        ) );
    }
}
add_action( 'pre_get_posts', 'SearchFilter' ); // pre_get_posts is an action, not a filter, so you don't have to return anything in it

If you want the server time, then use time function as in code above.

On the other hand, if you need to use WP time in comparisons, then use current_time function:

current_time( 'timestamp' );
Post a comment

comment list (0)

  1. No comments so far