Created
May 1, 2015 21:43
-
-
Save rali14/450aa45e7345a2653094 to your computer and use it in GitHub Desktop.
Add additional info to single job listing page
This file contains hidden or 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
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