Last active
December 17, 2021 17:24
-
-
Save nathaningram/3d127229e692576f7c3d7c86b508c75d to your computer and use it in GitHub Desktop.
WP Dashboard Widget from Kadence Element (experimental)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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