בעזרת הקוד הבא, אפשר ליצור ווידג'ט שיציג את הפוסטים האחרונים שעלו בתצוגת מסך הראשית של וורדפרס (wp-admin).
אפשר להחליט על כמות הפוסטים שיוצגו בעזרת שינוי המספר של numberposts
.
// Create dashboard widget of most recent posts
function wps_recent_posts_dw() {
?>
<ol>
<?php
global $post;
$args = array( 'numberposts' => 5 );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li> (<? the_date('Y / n / d'); ?>) <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ol>
<?php
}
function add_wps_recent_posts_dw() {
wp_add_dashboard_widget( 'wps_recent_posts_dw', __( 'Recent Posts' ), 'wps_recent_posts_dw' );
}
add_action('wp_dashboard_setup', 'add_wps_recent_posts_dw' );
Code language: PHP (php)