Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Last active December 17, 2021 17:24
Show Gist options
  • Save nathaningram/3d127229e692576f7c3d7c86b508c75d to your computer and use it in GitHub Desktop.
Save nathaningram/3d127229e692576f7c3d7c86b508c75d to your computer and use it in GitHub Desktop.
WP Dashboard Widget from Kadence Element (experimental)
//Add Kadence Dashboard Widget
function ni_register_kadence_dashboard_widget() {
wp_add_dashboard_widget(
'custom_dashboard_widget',
'Welcome to Your Website', //Title for Dashboard Widget
'ni_custom_dashboard_widget_content'
);
}
function ni_kadence_dashboard_widget_content() {
echo do_shortcode('[kadence_element id="104"]'); //Add your shortcode here
}
add_action( 'wp_dashboard_setup', 'ni_register_kadence_dashboard_widget' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment