Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@feliciaceballos
Last active February 28, 2019 23:28
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 feliciaceballos/a3dd5263867b9b0fe2788934fc2dd1c1 to your computer and use it in GitHub Desktop.
Save feliciaceballos/a3dd5263867b9b0fe2788934fc2dd1c1 to your computer and use it in GitHub Desktop.
List of Posts with clickable title
<?php
// print posts
foreach( $allposts as $remote_post ) {
$timestamp = strtotime( $remote_post->date_gmt );
$date = gmdate("m/d/y",$timestamp);
echo '<p><a href="' .$remote_post->link.'">'.$remote_post->title->rendered.'</a> ' . $date . '</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment