Add this code to the functions ///Show on the counter function my_custom_dashboard_widgets() { global $wp_meta_boxes; wp_add_dashboard_widget(‘custom_help_widget’, ‘Posts’,’custom_dashboard_help’); } function custom_dashboard_help() { $randoms= new WP_Query(array( ‘post_type’=>’post’,’post_status’=>’publish’,’order’=>’DESC’,’orderby’=>’ID’, ‘posts_per_page’=>’10’)); if($randoms->have_posts()) : while($randoms->have_posts()) : $randoms->the_post();?> <!—-post—-> <div class=”img-in” style=”width: 96%;height: 60px;margin-bottom: 7px;background-color: bisque;padding: 9px;”> <img src=”https://wordpress.stackexchange.com/questions/362675/<?php $thumb_id = get_post_thumbnail_id(); $thumb_url = wp_get_attachment_image_src($thumb_id,”thumbnail-size’, true); echo $thumb_url[0]; ?>” alt=”” style=”width: 50px;float: … Read more