Skip to content

Instantly share code, notes, and snippets.

@fernandiez
Created January 11, 2018 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fernandiez/cb7286bd2c2f2c9cbf4bb4ded82301c5 to your computer and use it in GitHub Desktop.
Save fernandiez/cb7286bd2c2f2c9cbf4bb4ded82301c5 to your computer and use it in GitHub Desktop.
Añadir widgets de contenido en la portada del panel
// Añadir widgets de contenido en la portada del panel
add_action('wp_dashboard_setup', 'recopilatorio_dashboard_widgets');
function recopilatorio_dashboard_widgets() {
global $wp_meta_boxes;
wp_add_dashboard_widget('recopilatorio_help_widget', 'Help Section Title', 'recopilatorio_dashboard_help');
}
function recopilatorio_dashboard_help() {
echo '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum posuere ipsum at porttitor lobortis. </p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment