Skip to content

Instantly share code, notes, and snippets.

@JohnLauber
Created March 20, 2014 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohnLauber/9667302 to your computer and use it in GitHub Desktop.
Save JohnLauber/9667302 to your computer and use it in GitHub Desktop.
Date Issue
global $post;
$the_skills = get_post_meta($post->ID, 'necessary_skills', true);
$location = get_post_meta($post->ID, 'location', true);
$pdate = the_time('m/j/Y');
echo '<li><i class="fa fa-map-marker"></i> '. $location .'</li>';
echo '<li><i class="fa fa-calendar"></i> Posted on '. $pdate .'</li>';
echo '<li><i class="fa fa-pencil"></i> '. $the_skills .'</li>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment