Custom post types are not shown after update
-
Hello,
After upgrading WordPress from 3.x to 4.2.4 (I don’t know exact previous version as it was updating automatically), plugin stopped working for custom post types. In the admin panel, in a list of custom post types, custom post type posts of the second language do not appear.
I updated the plugin from 1.7.6 to 1.7.9 and added this filter:
add_filter(‘pll_get_post_types’, ‘add_custom_post_types_which_will_become_translatable’);
function add_custom_post_types_which_will_become_translatable($types) {
return array_merge($types, array(‘bubble’ => ‘bubble’));
}And resaved plugin settings page with checkbox checked on my custom post type.
Now in the admin panel, in the custom post type list, no posts are shown (“No items found”), although in the count of posts it shows 6 (correct number). In frontend they are also not shown.
Is this a known issue? I need to find a way to fix it…
- The topic ‘Custom post types are not shown after update’ is closed to new replies.