Title: Problem with custom post type
Last modified: April 10, 2020

---

# Problem with custom post type

 *  Resolved anonymized-17631918
 * (@anonymized-17631918)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/problem-with-custom-post-type-6/)
 * Hello,
 * when i submit a post with custom post type all is fine. The Post is submitted
   correct. But in my Dashboard they show “No published Posts”.
 * I hope you understand my bad english…

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter anonymized-17631918
 * (@anonymized-17631918)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/problem-with-custom-post-type-6/#post-12656791)
 * By reading in Forums i found this solution:
    [wpuf_dashboard post_type=”custom_post_type”]
 * But i need this:
    [wpuf_account post_type=”custom_post_type”] …but this shortcode
   is not working.
 *  [Mushrit Shabnam](https://wordpress.org/support/users/611shabnam/)
 * (@611shabnam)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/problem-with-custom-post-type-6/#post-12661829)
 * Hello @tkwpweb,
 * The custom posts are supposed to show up in the dashboard page by default. The
   dashboard page is a page where you can show all your custom post type posts.
 * The [wpuf_account] shortcode is unable to accept any parameter. So if you want
   to show the custom post type post in the account page, you have to add the following
   custom code in your child theme’s functions.php file:
 *     ```
       add_filter( 'wpuf_account_sections', 'wpuf_my_page' );
   
       function wpuf_my_page( $sections ) {
       $sections = array_merge( $sections, array( array( 'slug' => 'my-page', 'label' => 'Custom Post' ) ) );
   
       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="custom_post_type"]');
   
       }
       ```
   
    -  This reply was modified 6 years, 2 months ago by [Mushrit Shabnam](https://wordpress.org/support/users/611shabnam/).

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Problem with custom post type’ is closed to new replies.

 * ![](https://ps.w.org/wp-user-frontend/assets/icon-256x256.gif?rev=2818776)
 * [User Frontend: AI Powered Frontend Posting, User Directory, Profile, Membership & User Registration](https://wordpress.org/plugins/wp-user-frontend/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-user-frontend/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-user-frontend/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-user-frontend/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-user-frontend/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-user-frontend/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Mushrit Shabnam](https://wordpress.org/support/users/611shabnam/)
 * Last activity: [6 years, 2 months ago](https://wordpress.org/support/topic/problem-with-custom-post-type-6/#post-12661829)
 * Status: resolved