如何从WordPress管理屏幕查看帖子

时间:2020-03-28 作者:Peter138

我一直在考虑从管理仪表板屏幕上显示我的帖子,就像显示插件一样。sample image

上面是wordpress仪表板。如何从wp屏幕查看帖子。请帮帮我。如果没有重定向到帖子url,我将不胜感激

1 个回复
SO网友:ali mosavi

将此代码添加到函数

///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\');

enter image description here

相关推荐

使用定制post_type的快速草稿小部件(dashboard.php)

我正在尝试修改WP dashboard小部件“快速草稿”,以接受自定义post\\u类型的avada\\u公文包(avada Fusion主题),但页面只是挂起每个提交测试。这里有一个类似的问题:Adding Custom taxonomies to Press This panel 一位成员提到他们已经成功了,但不幸的是,他们删除了他们的例子,因为帖子是关于“按这个”。我想知道我是否正确调用了post\\u类型。任何帮助都将受到感激。就我所知:/** * The Quick Draft wid