Skip to content

Instantly share code, notes, and snippets.

@rali14
Created May 1, 2015 21:43
Show Gist options
  • Save rali14/450aa45e7345a2653094 to your computer and use it in GitHub Desktop.
Save rali14/450aa45e7345a2653094 to your computer and use it in GitHub Desktop.
Add additional info to single job listing page
function custom_listify_single_job_listing_meta() {
global $post;
echo '<br/>';
echo '<span class="custom-info" >' . $post->post_date . '</span>'; // Change $post->post_date with your own meta key or text
}
add_action( 'listify_single_job_listing_meta', 'custom_listify_single_job_listing_meta', 40 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment