Add custom post types stats to a custom dashboard widget
Lokks like you have a function declared inside another function, your code is wrong, try this: // wp_dashboard_setup is the action hook add_action(‘wp_dashboard_setup’, ‘mycustom_moviestats’); // add dashboard widget function mycustom_moviestats() { wp_add_dashboard_widget(‘custom_movie_widget’, ‘Movie Stats’,’custom_dashboard_movie_list’); } function custom_dashboard_movie_list(){ $args = array( ‘public’ => true , ‘_builtin’ => false ); $output=”object”; $operator=”and”; echo ‘<table>’; //loop over all … Read more