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(){
?>
Section Title
Section Content
<?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.
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.