向wordpress管理仪表板添加小部件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向wordpress管理仪表板添加小部件相关的知识,希望对你有一定的参考价值。

  1. add_action('wp_dashboard_setup', 'custom_dashboard_widgets');
  2.  
  3. function custom_dashboard_widgets(){
  4. //first parameter is the ID of the widget (the div holding the widget will have that ID)
  5. //second parameter is title (shown in the header of the widget) -> see picture bellow
  6. //third parameter is the function name we are calling to get the content of our widget
  7. wp_add_dashboard_widget('my_custom_widget_id', 'My Widget Title', 'my_custom_widget');
  8. }
  9.  
  10. function my_custom_widget() {
  11. //the content of our custom widget
  12. echo '<p>The content of the widget goes here.</p>';
  13. }

以上是关于向wordpress管理仪表板添加小部件的主要内容,如果未能解决你的问题,请参考以下文章

WordPress仪表板上的自定义内容

php 在WordPress中添加全宽仪表板小部件

php 在管理仪表板页面上删除不必要的WordPress小部件

php DashboardWidgeteinfügen - 将自定义仪表板小部件添加到wordpress

如何在 WordPress 中创建自定义可拖动小部件

php 从Wordpress仪表板中删除小部件