如何在WordPress仪表盘中添加自定义模块?
如果想在WordPress仪表盘中添加一个自定义的模块,那么如何在WordPress仪表盘中添加自定义模块?可…
如果想在WordPress仪表盘中添加一个自定义的模块,那么如何在WordPress仪表盘中添加自定义模块?可以将下面代码添加到当前主题函数模板functions.php中:
add_action(‘wp_dashboard_setup’, ‘my_custom_dashboard_widgets’);
function my_custom_dashboard_widgets() {
global $wp_meta_boxes;
wp_add_dashboard_widget(‘custom_help_widget’, ‘自定义’, ‘custom_dashboard_help’);
}
function custom_dashboard_help() {
echo ‘<p>自定义内容</p>’;
}
类别:WordPress技巧、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!