WordPress函数wp_add_dashboard_widget用于在WordPress仪表盘中添加自定义小工具(widget)。
它的具体用法如下:
1. 在functions.php或者自定义插件文件中使用add_action()函数来调用wp_add_dashboard_widget()函数。例如:
add_action('wp_dashboard_setup', 'custom_dashboard_widget');
function custom_dashboard_widget() {
wp_add_dashboard_widget('custom_dashboard_widget', '自定义小工具', 'custom_dashboard_widget_content');
}
在这个例子中,我们通过wp_dashboard_setup动作钩子来调用custom_dashboard_widget()函数,然后在该函数中使用wp_add_dashboard_widget()来添加一个名为“custom_dashboard_widget”的小工具,并将其标题设置为“自定义小工具”,内容设置为“custom_dashboard_widget_content”。
2. 创建一个回调函数来定义小工具的内容。这个回调函数将在仪表盘中显示小工具的内容。例如:
function custom_dashboard_widget_content() {
echo '这是自定义小工具的内容。';
}
在这个例子中,我们定义了一个名为custom_dashboard_widget_content()的回调函数,并在函数中直接使用echo来输出一段文本。您可以根据自己的需求在回调函数中输出任何内容。
3. 保存文件并刷新WordPress仪表盘。您应该能够在仪表盘中看到刚刚添加的自定义小工具。
需要注意的是,wp_add_dashboard_widget()函数只能在wp_dashboard_setup动作钩子中使用。因此,确保在调用该函数之前,使用add_action()将其绑定到wp_dashboard_setup动作钩子。
此外,wp_add_dashboard_widget()函数还有一些可选参数,用于设置小工具的位置、优先级等。您可以查阅WordPress官方文档以了解更多相关信息。
希望这个教程能够帮助您理解和使用wp_add_dashboard_widget()函数。
0 个评论