Advertisement
Aurangajeb

Add Event Menu on the My Account Page

Jan 22nd, 2020
399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. //Add a new post type (Event) on the WPUF Account page start
  2.  
  3. add_filter( 'wpuf_account_sections', 'wpuf_my_event_page' );
  4.  
  5. function wpuf_my_event_page( $sections ) {
  6. $sections = array_merge( $sections, array( array( 'slug' => 'event', 'label' => 'Events' ) ) );
  7.  
  8. return $sections;
  9. }
  10. //Add a new post type (Event) on the WPUF Account page start code
  11. add_action( 'wpuf_account_content_event', 'wpuf_my_event_page_section', 10, 2 );
  12.  
  13. function wpuf_my_event_page_section( $sections, $current_section ) {
  14.  
  15. echo do_shortcode('[wpuf_dashboard post_type="tribe_events"]');
  16.  
  17. }
  18. //Add a new post type (Event) on the WPUF Account page End code
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement