我如何着手在WordPress管理的帖子部分创建仪表板

时间:2012-05-17 作者:Ronny K

我正试图在wordpress管理区的帖子部分创建一个仪表板。我希望它就在发布仪表板下面。

例如,这里的代码在我登录到管理区域时立即放置一个仪表板。

// Create the function to output the contents of our Dashboard Widget

function example_dashboard_widget_function() {
    // Display whatever it is you want to show
    echo "Hello World, I\'m a great Dashboard Widget";
} 

// Create the function use in the action hook

function example_add_dashboard_widgets() {
    wp_add_dashboard_widget(\'example_dashboard_widget\', \'Example Dashboard Widget\', \'example_dashboard_widget_function\');   
} 

// Hook into the \'wp_dashboard_setup\' action to register our other functions

add_action(\'wp_dashboard_setup\', \'example_add_dashboard_widgets\' );

1 个回复
最合适的回答,由SO网友:mrwweb 整理而成

你会想调查add_menu_page() function 然后使用$position 参数将其放置在菜单中所需的位置。

结束

相关推荐

插件:Google Analytics for Dashboard错误-时间戳与当前时间相差太远

有人用过Google Analytics for Dashboard 插件?我已经成功安装了它,但每当我尝试使用开始登录过程按钮将其链接到我的Google帐户时,我总是收到一条奇怪的消息,如下所示:Timestamp is too far from current time: <a Unix timestamp here> 我正在使用WordPress 3.1.3。知道这里发生了什么吗?谢谢,我