acf/translate_{$this->hook_name}

acf/translate_{$this->hook_name}

Hook Type: filter

See hook in core

Displaying hooks found in version: advanced-custom-fields.6.3.6.3

apply_filters('acf/translate_{$this->hook_name}') is found 3 times:

  • /includes/class-acf-internal-post-type.php line 339
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
             * @since   5.0.0
             *
             * @param   array $post The post array.
             */
            $post = apply_filters( "acf/translate_{$this->hook_name}", $post );
        }
     
        return $post;
    }
     
    /**
  • /includes/post-types/class-acf-post-type.php line 764
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
             * @since   5.0.0
             *
             * @param   array $post The post array.
             */
            $post = apply_filters( "acf/translate_{$this->hook_name}", $post );
        }
     
        return $post;
    }
     
    /**
  • /includes/post-types/class-acf-taxonomy.php line 651
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
             * @since   5.0.0
             *
             * @param   array $post The post array.
             */
            $post = apply_filters( "acf/translate_{$this->hook_name}", $post );
        }
     
        return $post;
    }
     
    /**