Title: Editing Dashboard Section.
Last modified: March 6, 2021

---

# Editing Dashboard Section.

 *  Resolved [umoori](https://wordpress.org/support/users/umoori/)
 * (@umoori)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/editing-dashboard-section/)
 * Assalam u Alikum and Good day!
 * Is it possible to edit dashboard section without coding in dashboard.php file?
   
   I wanted to add some columns in table to show more information on dashboard.
 * Regards,

Viewing 1 replies (of 1 total)

 *  [Mushrit Shabnam](https://wordpress.org/support/users/611shabnam/)
 * (@611shabnam)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/editing-dashboard-section/#post-14145049)
 * Hello [@umoori](https://wordpress.org/support/users/umoori/),
 * Yes you will be able to add columns in the dashboard page by adding the custom
   code in your theme’s functions.php file:
 * Here is an example code to help you so that you can get started with the process:
 *     ```
       function wpufe_dashboard_change_head( $args ) {
       printf( '<th>%s</th>', __( 'Date', 'wpuf' ) );
       }
   
       add_action( 'wpuf_dashboard_head_col', 'wpufe_dashboard_change_head', 10, 2 );
       function wpufe_dashboard_row_col( $args, $post ) {
       ?>
       <td>
       <?php
   
       $post_date = get_the_date( 'l F j, Y' ); 
       	echo $post_date;
   
       ?>
       </td>
       <?php
       }
   
       add_action( 'wpuf_dashboard_row_col', 'wpufe_dashboard_row_col', 10, 2 );
       ```
   
 * regards,
    -  This reply was modified 5 years, 3 months ago by [Mushrit Shabnam](https://wordpress.org/support/users/611shabnam/).
    -  This reply was modified 5 years, 3 months ago by [Mushrit Shabnam](https://wordpress.org/support/users/611shabnam/).

Viewing 1 replies (of 1 total)

The topic ‘Editing Dashboard Section.’ is closed to new replies.

 * ![](https://ps.w.org/wp-user-frontend/assets/icon-256x256.gif?rev=2818776)
 * [User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration](https://wordpress.org/plugins/wp-user-frontend/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-user-frontend/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-user-frontend/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-user-frontend/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-user-frontend/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-user-frontend/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Mushrit Shabnam](https://wordpress.org/support/users/611shabnam/)
 * Last activity: [5 years, 3 months ago](https://wordpress.org/support/topic/editing-dashboard-section/#post-14145049)
 * Status: resolved