Source code for https://victorfont.com/free-plugins/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function vmf_post_date_column_time( $h_time, $post ) { | |
// If post is scheduled then add the time to the column output | |
if ($post->post_status == 'future') { | |
$h_time .= '<br>' . get_post_time( 'g:i a', false, $post ); | |
} | |
// Return the column output | |
return $h_time; | |
} | |
add_filter ( 'post_date_column_time' , 'vmf_post_date_column_time' , 10 , 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment