<?php add_filter('pll_get_post_types', 'unset_cpt_pll', 10, 2); function unset_cpt_pll( $post_types, $is_settings ) { $post_types['acf'] = 'acf'; return $post_types; }