在 WordPress 仪表板中添加自定义模块

在 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 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册