WP如何在后台仪表盘中,添加自定义模块 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

使用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>';}

就可以在仪表盘中添加了一个自定义模块。

另外,因为要修改functions.php,在每次更新主题,都会更新functions.php,我们可以参考这篇文章《解决WordPress每次升级主题都需要添加一次自定义代码的问题》

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: