Viewing 3 replies - 1 through 3 (of 3 total)
  • You can filter the allowed post types in your code:

    add_filter( 'mlp_allowed_post_types', function( $post_types ) {
    	$post_types[] = 'project';
    	return $post_types;
    });
    Thread Starter ctpntn

    (@ctpntn)

    I’m sorry, but ‘in my code’ where?

    Wherever you register the post type, preferably in a network activated plugin.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Projects translation’ is closed to new replies.