Title: Latest version doesn&#039;t work for custom post types
Last modified: August 20, 2016

---

# Latest version doesn't work for custom post types

 *  Resolved [Tim Bowen](https://wordpress.org/support/users/creativeslice/)
 * (@creativeslice)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/latest-version-doesnt-work-for-custom-post-types/)
 * We had to revert back to 3.5.6.3 to get custom fields to show up for custom post
   types.
 * [http://wordpress.org/extend/plugins/advanced-custom-fields/](http://wordpress.org/extend/plugins/advanced-custom-fields/)

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

 *  [plumwd](https://wordpress.org/support/users/plumwd/)
 * (@plumwd)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/latest-version-doesnt-work-for-custom-post-types/#post-3338444)
 * I’m using v3.5.7.2. You need to make sure that you update your permalinks when
   you add new custom post types or they won’t work correctly.
 *  [IoanPokorny](https://wordpress.org/support/users/ioanpokorny/)
 * (@ioanpokorny)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/latest-version-doesnt-work-for-custom-post-types/#post-3338493)
 * Are they defined corectly, had issues when I used plugins, if defined manually
   they work perfectly with all of the custom posts
 *     ```
       add_action( 'init', 'create_clients' );
       function create_clients() {
       	 $labels = array(
           'name' => _x('Clients', 'post type general name'),
           'singular_name' => _x('Client', 'post type singular name'),
           'add_new' => _x('Add New', 'Client'),
           'add_new_item' => __('Add new Client'),
           'edit_item' => __('Edit client'),
           'new_item' => __('New client'),
           'view_item' => __('View client'),
           'search_items' => __('Search clients'),
           'not_found' =>  __('No clients found'),
           'not_found_in_trash' => __('No clients found in Trash'),
           'parent_item_colon' => ''
         );
   
         $supports = array('title',  'page-attributes');
   
         register_post_type( 'clients',
           array(
             'labels' => $labels,
             'public' => true,
             'supports' => $supports,
             'hierarchical' => true
           )
         );
       }
       ```
   
 * _[Moderator Note: Please post code or markup snippets between backticks or use
   the code button. As it stands, your posted code may now have been permanently
   damaged/corrupted by the forum’s parser.]_
 *  Thread Starter [Tim Bowen](https://wordpress.org/support/users/creativeslice/)
 * (@creativeslice)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/latest-version-doesnt-work-for-custom-post-types/#post-3338494)
 * Thanks guys. It looks like this issue was fixed with the 3.5.7.**2** update.

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

The topic ‘Latest version doesn't work for custom post types’ is closed to new replies.

 * ![](https://ps.w.org/advanced-custom-fields/assets/icon.svg?rev=3207824)
 * [Advanced Custom Fields (ACF®)](https://wordpress.org/plugins/advanced-custom-fields/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/advanced-custom-fields/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/advanced-custom-fields/)
 * [Active Topics](https://wordpress.org/support/plugin/advanced-custom-fields/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/advanced-custom-fields/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/advanced-custom-fields/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Tim Bowen](https://wordpress.org/support/users/creativeslice/)
 * Last activity: [13 years, 4 months ago](https://wordpress.org/support/topic/latest-version-doesnt-work-for-custom-post-types/#post-3338494)
 * Status: resolved