Adding an additional section to the dashboard page is quite common and will help the system add additional details. Using the
"pzfm_after_dashboard_items" action hook this will help you to add the additional section. In this article you will know how to add additional dashboard section using action hooks.Add the following code snippets using the action hook to your theme functions.php file.
/*
* Action hook "pzfm_after_dashboard_items" callback
*/
function my_custom_dashbaord_section_callback(){
?>
<?php
}
/*
* Use the "pzfm_after_dashboard_items" action hook to add additional section in the dashboard page
*/
add_action( 'pzfm_after_dashboard_items', 'my_custom_dashbaord_section_callback' );
Note: You can use bootstrap classes for designing your section.
![How to add additional section in dashboard page? 1 Dashboard Page Hook-Project Zealous](data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDI0IiBoZWlnaHQ9IjM1MCIgdmlld0JveD0iMCAwIDEwMjQgMzUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==)