Hi Mika,
Thanks for your fast response.
The code I used to make the CPT is:
// Column
register_post_type( ‘Column’,
array(
‘labels’ => array(
‘name’ => __( ‘Column’ ),
‘singular_name’ => __( ‘Column’ )
),
‘menu_icon’ => ‘dashicons-welcome-widgets-menus’,
‘public’ => true,
‘publicly_queryable’ => true,
‘has_archive’ => true,
‘supports’ => array(‘title’,’editor’,’thumbnail’),
)
);
Is this not the correct way to do it?
I made 9 other CPT’s the exact same way and none of those are being translated.
Do you know a better way to do this?