Skip to content

Instantly share code, notes, and snippets.

@uglyeoin
Last active September 19, 2025 14:38
Show Gist options
  • Save uglyeoin/b5d8ea7a783b860f8261d07690f1b93b to your computer and use it in GitHub Desktop.
Save uglyeoin/b5d8ea7a783b860f8261d07690f1b93b to your computer and use it in GitHub Desktop.
/**
* Dashboard Widget: Website tutorials & add-ons
* Place in a small plugin or your theme’s functions.php
*/
defined('ABSPATH') || exit;
// Register the widget
add_action('wp_dashboard_setup', 'sb_register_dashboard_widget');
function sb_register_dashboard_widget(): void {
// Show to admins only (adjust capability if needed)
if ( ! current_user_can('manage_options') ) {
return;
}
wp_add_dashboard_widget(
'sb_help_widget', // Widget ID
__('Website tutorials & add-ons', 'square-balloon'),// Title (translatable)
'sb_render_dashboard_widget' // Display callback
);
}
/**
* Render the widget content.
*/
function sb_render_dashboard_widget(): void {
?>
<div class="sb-help-widget">
<p><?php esc_html_e('Quick links to help you manage your site:', 'square-balloon'); ?></p>
<ul>
<li>
<a href="https://example.com/tutorials" target="_blank" rel="noopener">
<?php esc_html_e('Video tutorials', 'square-balloon'); ?>
</a>
</li>
<li>
<a href="https://example.com/add-ons" target="_blank" rel="noopener">
<?php esc_html_e('Recommended add-ons', 'square-balloon'); ?>
</a>
</li>
</ul>
<p><?php esc_html_e('Need help? Contact support:', 'square-balloon'); ?>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment