10,
'post_type' => array ( 'post', 'page' ),
'orderby' => 'modified')
);
/**
* @todo Icons for post formats
* @todo Add option to configure how many posts should be shown
*/
if ( $posts ) {
echo '
';
foreach ( $posts as $post ) {
printf('- » %2$s
', esc_html( get_permalink( $post->ID )), esc_html( $post->post_title ));
}
echo '
';
}
else {
printf( __( 'No edits found. Write a new post.', 'admin-dashboard-last-edits' ), esc_url( admin_url( 'post-new.php' ) ) );
}
}
?>