You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
627 B

<section class="row">
<h1>Your recent posts</h1>
<header class="row"><p class="col">Title</p><p class="col">Published at</p></header>
<?php
$posts=get_my_posts();
foreach ($posts as $post){
echo '<article class="row">'
. '<p class="col">' . $post->title
. ' (<a href="' . $post->url . '/edit?destination=admin">Edit</a> , '
. '<a href="' . $post->url . '/delete?destination=admin">Delete</a> )'
. '</p>'
. '<p class="col">' . date('d F Y', $post->date) . '</p>'
. '</article>';
}
?>
</section>
<section class="row">
<h2>Static pages</h2>
<?php get_recent_pages(); ?>
</section>