Aurangajeb

Creates a New TAB in WPUF ACCOUNT page for Vehicle Listings

Oct 30th, 2019
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. /****** Creates a New TAB in WPUF ACCOUNT page for Vehicle Listings *******/
  2.  
  3. add_filter( 'wpuf_account_sections', 'wpuf_my_page' );
  4.  
  5. function wpuf_my_page( $sections ) {
  6. $sections = array_merge( $sections, array( array( 'slug' => 'my-page', 'label' => 'Vehicle Listings' ) ) );
  7.  
  8. return $sections;
  9. }
  10.  
  11. add_action( 'wpuf_account_content_my-page', 'wpuf_my_page_section', 10, 2 );
  12.  
  13. function wpuf_my_page_section( $sections, $current_section ) {
  14.  
  15. echo do_shortcode('[wpuf_dashboard post_type="vehicle_listings"]');
  16.  
  17. }
Add Comment
Please, Sign In to add comment