Title: Custom PostTypes workaround
Last modified: March 23, 2018

---

# Custom PostTypes workaround

 *  Resolved [jrtderonde](https://wordpress.org/support/users/jrtderonde/)
 * (@jrtderonde)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/)
 * Hey,
 * How can I get this plugin to work with custom post types as well? I’m using a
   lame-ass workaround at the moment, but I want to solve this for my client.
 * Regards,
    Jim

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

 *  [Soft79](https://wordpress.org/support/users/josk79/)
 * (@josk79)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10108748)
 * See [https://wordpress.org/plugins/wp-multilang/](https://wordpress.org/plugins/wp-multilang/)
   and look for ‘Manage translation settings via json’.
 *  Thread Starter [jrtderonde](https://wordpress.org/support/users/jrtderonde/)
 * (@jrtderonde)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10110962)
 * Ok so, I added a file `wpm-config.json` in my theme’s folder. I added the code,
   but I can’t translate the post type yet.
 *     ```
       {
           "post_types": {
               "hosting": {},
           }
       }
       ```
   
    -  This reply was modified 8 years, 1 month ago by [jrtderonde](https://wordpress.org/support/users/jrtderonde/).
 *  [Soft79](https://wordpress.org/support/users/josk79/)
 * (@josk79)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10113335)
 * Try deactivating and then activating a plugin or switching theme. The json files
   are only re-read by the plugin at one of the following actions:
 * – after_switch_theme
    – activated_plugin – upgrader_process_complete
 *  Thread Starter [jrtderonde](https://wordpress.org/support/users/jrtderonde/)
 * (@jrtderonde)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10113717)
 * Didn’t work 🙁
 *  [Anticosti](https://wordpress.org/support/users/anticosti/)
 * (@anticosti)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10113764)
 * Even if clearing the cache?
 *  [VaLeXaR](https://wordpress.org/support/users/valexar/)
 * (@valexar)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10114205)
 * [@jrtderonde](https://wordpress.org/support/users/jrtderonde/)
    What do You using
   for this post type page? Bult-in post type page or custom page?
 *  Thread Starter [jrtderonde](https://wordpress.org/support/users/jrtderonde/)
 * (@jrtderonde)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10115288)
 * Ah, it was the cache. Thanks for your help guys!
 *  [krishnac](https://wordpress.org/support/users/krishnac/)
 * (@krishnac)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10149717)
 * Hi,
 * I have using this plugin but not supporting the custom post type.
    Please help
   me!, This is my custom post type code
 * $labels = array( ‘name’ => ‘Review’, ‘singular_name’ => ‘Review’, ‘add_new’ =
   > ‘Add New’, ‘add_new_item’ => ‘Add New Review’, ‘edit_item’ => ‘Edit Review’,‘
   new_item’ => ‘New Review’, ‘all_items’ => ‘All Reviews’, ‘view_item’ => ‘View
   Review’, ‘search_items’ => ‘Search Reviews’, ‘not_found’ => ‘No Reviews found’,‘
   not_found_in_trash’ => ‘No Reviews found in Trash’, ‘parent_item_colon’ => ”,‘
   menu_name’ => ‘Reviews’ );
 * $args = array( ‘labels’ => $labels, ‘public’ => true, ‘publicly_queryable’ =>
   true, ‘show_ui’ => true, ‘show_in_menu’ => true, ‘query_var’ => true, ‘rewrite’
   => array( ‘slug’ => ‘review’ ), ‘capability_type’ => ‘post’, ‘has_archive’ =>
   true, ‘hierarchical’ => false,’menu_position’ => null,’supports’ => array( ‘title’,‘
   thumbnail’,’editor’ ));
 * register_post_type( ‘Review’, $args );

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

The topic ‘Custom PostTypes workaround’ is closed to new replies.

 * ![](https://ps.w.org/wp-multilang/assets/icon-256x256.png?rev=1760406)
 * [WP Multilang - Translation and Multilingual Plugin](https://wordpress.org/plugins/wp-multilang/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-multilang/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-multilang/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-multilang/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-multilang/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-multilang/reviews/)

 * 8 replies
 * 5 participants
 * Last reply from: [krishnac](https://wordpress.org/support/users/krishnac/)
 * Last activity: [8 years, 1 month ago](https://wordpress.org/support/topic/custom-posttypes-workaround/#post-10149717)
 * Status: resolved