Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Add a new post type (Product) on the WPUF Account page start
- add_filter( 'wpuf_account_sections', 'wpuf_my_product_page' );
- function wpuf_my_product_page( $sections ) {
- $sections = array_merge( $sections, array( array( 'slug' => 'product', 'label' => 'Products' ) ) );
- return $sections;
- }
- add_action( 'wpuf_account_content_product', 'wpuf_my_product_section', 10, 2 );
- function wpuf_my_product_section( $sections, $current_section ) {
- echo do_shortcode('[wpuf_dashboard post_type="product"]');
- }
- //Add a new post type (Product) on the WPUF Account page End
Advertisement
Add Comment
Please, Sign In to add comment