Custom post type column which compares dates?
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
3
down vote
favorite
I have a custom post type where the posts have a start date and an end date. These are saved to the database as Unix timestamp/Epoch. I want to create a column for this custom post type called Active
where I want to show a green icon when the current date and time is between the start and end date.
How do I pull the metadata and compare them to the current date/time and if true display a green icon, if not a red icon?
I have this function which does almost the same thing but for search results. But I cannot figure out how to use this in a column:
function filter_search_results( $search_query )
$time = current_time( 'timestamp' );
if ( $search_query->is_search )
$search_query->set( 'meta_query', array(
'relation' => 'AND',
array(
'key' => 'visitor-start-date',
'value' => $time,
'compare' => '<='
),
array(
'key' => 'visitor-end-date',
'value' => $time,
'compare' => '>='
),
) );
add_action( 'pre_get_posts', 'filter_search_results' );
php customization
add a comment |
up vote
3
down vote
favorite
I have a custom post type where the posts have a start date and an end date. These are saved to the database as Unix timestamp/Epoch. I want to create a column for this custom post type called Active
where I want to show a green icon when the current date and time is between the start and end date.
How do I pull the metadata and compare them to the current date/time and if true display a green icon, if not a red icon?
I have this function which does almost the same thing but for search results. But I cannot figure out how to use this in a column:
function filter_search_results( $search_query )
$time = current_time( 'timestamp' );
if ( $search_query->is_search )
$search_query->set( 'meta_query', array(
'relation' => 'AND',
array(
'key' => 'visitor-start-date',
'value' => $time,
'compare' => '<='
),
array(
'key' => 'visitor-end-date',
'value' => $time,
'compare' => '>='
),
) );
add_action( 'pre_get_posts', 'filter_search_results' );
php customization
A column in the admin? Or on the front end?
– Jacob Peattie
2 days ago
@JacobPeattie in the admin pages, sorry for not making it clear.
– joq3
2 days ago
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I have a custom post type where the posts have a start date and an end date. These are saved to the database as Unix timestamp/Epoch. I want to create a column for this custom post type called Active
where I want to show a green icon when the current date and time is between the start and end date.
How do I pull the metadata and compare them to the current date/time and if true display a green icon, if not a red icon?
I have this function which does almost the same thing but for search results. But I cannot figure out how to use this in a column:
function filter_search_results( $search_query )
$time = current_time( 'timestamp' );
if ( $search_query->is_search )
$search_query->set( 'meta_query', array(
'relation' => 'AND',
array(
'key' => 'visitor-start-date',
'value' => $time,
'compare' => '<='
),
array(
'key' => 'visitor-end-date',
'value' => $time,
'compare' => '>='
),
) );
add_action( 'pre_get_posts', 'filter_search_results' );
php customization
I have a custom post type where the posts have a start date and an end date. These are saved to the database as Unix timestamp/Epoch. I want to create a column for this custom post type called Active
where I want to show a green icon when the current date and time is between the start and end date.
How do I pull the metadata and compare them to the current date/time and if true display a green icon, if not a red icon?
I have this function which does almost the same thing but for search results. But I cannot figure out how to use this in a column:
function filter_search_results( $search_query )
$time = current_time( 'timestamp' );
if ( $search_query->is_search )
$search_query->set( 'meta_query', array(
'relation' => 'AND',
array(
'key' => 'visitor-start-date',
'value' => $time,
'compare' => '<='
),
array(
'key' => 'visitor-end-date',
'value' => $time,
'compare' => '>='
),
) );
add_action( 'pre_get_posts', 'filter_search_results' );
php customization
php customization
asked 2 days ago
joq3
1019
1019
A column in the admin? Or on the front end?
– Jacob Peattie
2 days ago
@JacobPeattie in the admin pages, sorry for not making it clear.
– joq3
2 days ago
add a comment |
A column in the admin? Or on the front end?
– Jacob Peattie
2 days ago
@JacobPeattie in the admin pages, sorry for not making it clear.
– joq3
2 days ago
A column in the admin? Or on the front end?
– Jacob Peattie
2 days ago
A column in the admin? Or on the front end?
– Jacob Peattie
2 days ago
@JacobPeattie in the admin pages, sorry for not making it clear.
– joq3
2 days ago
@JacobPeattie in the admin pages, sorry for not making it clear.
– joq3
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
I solved it:
if ( 'visitor_active' == $column_name )
$start_date = get_post_meta( $post_id, 'visitor-start-date', true );
$end_date = get_post_meta( $post_id, 'visitor-end-date', true );
$current_time = current_time( 'timestamp' );
if ($start_date < $current_time && $end_date > $current_time)
echo '<span class="dashicons dashicons-yes" style="color:#75c377;"></span>';
else
echo '<span class="dashicons dashicons-no" style="color:lightgray;"></span>';
Don't know if this is the best way to do it though?
1
Looks fine to me.
– Jacob Peattie
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
I solved it:
if ( 'visitor_active' == $column_name )
$start_date = get_post_meta( $post_id, 'visitor-start-date', true );
$end_date = get_post_meta( $post_id, 'visitor-end-date', true );
$current_time = current_time( 'timestamp' );
if ($start_date < $current_time && $end_date > $current_time)
echo '<span class="dashicons dashicons-yes" style="color:#75c377;"></span>';
else
echo '<span class="dashicons dashicons-no" style="color:lightgray;"></span>';
Don't know if this is the best way to do it though?
1
Looks fine to me.
– Jacob Peattie
2 days ago
add a comment |
up vote
2
down vote
I solved it:
if ( 'visitor_active' == $column_name )
$start_date = get_post_meta( $post_id, 'visitor-start-date', true );
$end_date = get_post_meta( $post_id, 'visitor-end-date', true );
$current_time = current_time( 'timestamp' );
if ($start_date < $current_time && $end_date > $current_time)
echo '<span class="dashicons dashicons-yes" style="color:#75c377;"></span>';
else
echo '<span class="dashicons dashicons-no" style="color:lightgray;"></span>';
Don't know if this is the best way to do it though?
1
Looks fine to me.
– Jacob Peattie
2 days ago
add a comment |
up vote
2
down vote
up vote
2
down vote
I solved it:
if ( 'visitor_active' == $column_name )
$start_date = get_post_meta( $post_id, 'visitor-start-date', true );
$end_date = get_post_meta( $post_id, 'visitor-end-date', true );
$current_time = current_time( 'timestamp' );
if ($start_date < $current_time && $end_date > $current_time)
echo '<span class="dashicons dashicons-yes" style="color:#75c377;"></span>';
else
echo '<span class="dashicons dashicons-no" style="color:lightgray;"></span>';
Don't know if this is the best way to do it though?
I solved it:
if ( 'visitor_active' == $column_name )
$start_date = get_post_meta( $post_id, 'visitor-start-date', true );
$end_date = get_post_meta( $post_id, 'visitor-end-date', true );
$current_time = current_time( 'timestamp' );
if ($start_date < $current_time && $end_date > $current_time)
echo '<span class="dashicons dashicons-yes" style="color:#75c377;"></span>';
else
echo '<span class="dashicons dashicons-no" style="color:lightgray;"></span>';
Don't know if this is the best way to do it though?
answered 2 days ago
joq3
1019
1019
1
Looks fine to me.
– Jacob Peattie
2 days ago
add a comment |
1
Looks fine to me.
– Jacob Peattie
2 days ago
1
1
Looks fine to me.
– Jacob Peattie
2 days ago
Looks fine to me.
– Jacob Peattie
2 days ago
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwordpress.stackexchange.com%2fquestions%2f319393%2fcustom-post-type-column-which-compares-dates%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
A column in the admin? Or on the front end?
– Jacob Peattie
2 days ago
@JacobPeattie in the admin pages, sorry for not making it clear.
– joq3
2 days ago