Aurangajeb

Add product CPT menu on Account Dashboard page

Jan 30th, 2020
617
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. //Add a new post type (Product) on the WPUF Account page start
  2.  
  3. add_filter( 'wpuf_account_sections', 'wpuf_my_product_page' );
  4.  
  5. function wpuf_my_product_page( $sections ) {
  6. $sections = array_merge( $sections, array( array( 'slug' => 'product', 'label' => 'Products' ) ) );
  7.  
  8. return $sections;
  9. }
  10.  
  11. add_action( 'wpuf_account_content_product', 'wpuf_my_product_section', 10, 2 );
  12.  
  13. function wpuf_my_product_section( $sections, $current_section ) {
  14.  
  15.  echo do_shortcode('[wpuf_dashboard post_type="product"]');
  16.  
  17. }
  18. //Add a new post type (Product) on the WPUF Account page End
Advertisement
Add Comment
Please, Sign In to add comment