Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /****** Creates a New TAB in WPUF ACCOUNT page for Vehicle Listings *******/
- add_filter( 'wpuf_account_sections', 'wpuf_my_page' );
- function wpuf_my_page( $sections ) {
- $sections = array_merge( $sections, array( array( 'slug' => 'my-page', 'label' => 'Vehicle Listings' ) ) );
- return $sections;
- }
- add_action( 'wpuf_account_content_my-page', 'wpuf_my_page_section', 10, 2 );
- function wpuf_my_page_section( $sections, $current_section ) {
- echo do_shortcode('[wpuf_dashboard post_type="vehicle_listings"]');
- }
Add Comment
Please, Sign In to add comment