Skip to content

Instantly share code, notes, and snippets.

@rali14
Created May 2, 2015 21:34
Show Gist options
  • Save rali14/11ecec5cbb03b7bbc885 to your computer and use it in GitHub Desktop.
Save rali14/11ecec5cbb03b7bbc885 to your computer and use it in GitHub Desktop.
Add default date to the job results
function jobify_custom_date() {
echo '<li class="custom-date"><date>Posted on ' . get_post_time('F j, Y') . '</date></li>';
}
add_action('job_listing_meta_end', 'jobify_custom_date', 40);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment