Custom post type column which compares dates?

The name of the pictureThe name of the pictureThe name of the pictureClash 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' );









share|improve this question





















  • 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
















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' );









share|improve this question





















  • 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












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' );









share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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
















  • 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










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?






share|improve this answer
















  • 1




    Looks fine to me.
    – Jacob Peattie
    2 days ago










Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "110"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















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

























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?






share|improve this answer
















  • 1




    Looks fine to me.
    – Jacob Peattie
    2 days ago














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?






share|improve this answer
















  • 1




    Looks fine to me.
    – Jacob Peattie
    2 days ago












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?






share|improve this answer












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?







share|improve this answer












share|improve this answer



share|improve this answer










answered 2 days ago









joq3

1019




1019







  • 1




    Looks fine to me.
    – Jacob Peattie
    2 days ago












  • 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

















 

draft saved


draft discarded















































 


draft saved


draft discarded














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





















































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






Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay