最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to view a post from the wordpress admin screen

programmeradmin2浏览0评论

I have been thinking of displaying my post from the admin dashboard screen just like how a plugin is displayed.

Above is a wordpress dashboard. How do i view post from the wp screen. Kindly help me. without being redirected to the post url I'll appreciate

I have been thinking of displaying my post from the admin dashboard screen just like how a plugin is displayed.

Above is a wordpress dashboard. How do i view post from the wp screen. Kindly help me. without being redirected to the post url I'll appreciate

Share Improve this question asked Mar 28, 2020 at 17:19 Peter138Peter138 91 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

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="<?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: right;height: 50px;"> 
<div style="margin-right: 54px;">
<a href="<?php the_permalink(); ?>" target="_blank" ><?php the_title(); ?></a><br>
  <br>
<span style="font-size: 12px;"><a href="<?php bloginfo('url');?>/wp-admin/post.php?post=<?php the_ID(); ?>&action=edit"style="color: blue;" target="_blank" > edit </a> </span> 
</div>
</div>
<!----/post---->
<?php endwhile; endif; wp_reset_query();
 } add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');

发布评论

评论列表(0)

  1. 暂无评论