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.1.7

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

  • /includes/class-acf-internal-post-type.php line 341
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
             * @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 670
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
             * @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 591
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
             * @since   5.0.0
             *
             * @param   array $post The post array.
             */
            $post = apply_filters( "acf/translate_{$this->hook_name}", $post );
        }
     
        return $post;
    }
     
    /**