//Remove unwanted boxes and Add a custom widget called 'Help and Support
function my_custom_dashboard_widgets() {
global $wp_meta_boxes;
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
wp_add_dashboard_widget('custom_help_widget', 'Themes: Help and Support', 'custom_dashboard_help');
}
function custom_dashboard_help() {
echo '<p>Support: <a href="#" target="_blank">Support Forum</a><i> (For members only).</i><p><p>Wants to customize your theme by our WordPress Experts? <a href="#" target="_blank">Customize my theme</a> <i>(Our wp Experts will do it for you!)</i></p>';
}
3条答案
按热度按时间a5g8bdjr1#
也许你可以简单地在你的
functions.php
中添加一个自定义函数,包含你的特定HTML内容,如下所示:在这种情况下,您将在 Jmeter 板内的管理栏下向所有用户显示一些自定义内容。但现在它将是相当多的工作做造型。那么,为什么不使用普通的customDashboardWidgets及其功能,而只是重置样式呢?
最后你可以做一些造型:
注意:如果在
functions.php
中插入样式,请确保在CSS之前/之后正确关闭/打开PHP标记3npbholx2#
下面的功能将从您的 Jmeter 板中删除一些不需要的框。它还添加了一个自定义框称为“帮助和支持”。您可以将任何HTML添加到此部分。
将以下代码添加到
functions.php
希望这对你有帮助。
u3r8eeie3#
如果你需要更多的控制哪些角色会看到widget,你可以这样做:
这将仅向具有作者角色的用户显示小部件。您也可以合并多个角色。