entropia
10/4/2017 - 11:58 AM

Add Polylang Translation to ACF

<?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;
}