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

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 711
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
             * @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 597
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
             * @since   5.0.0
             *
             * @param   array $post The post array.
             */
            $post = apply_filters( "acf/translate_{$this->hook_name}", $post );
        }
     
        return $post;
    }
     
    /**