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

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 770
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
             * @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 657
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
             * @since   5.0.0
             *
             * @param   array $post The post array.
             */
            $post = apply_filters( "acf/translate_{$this->hook_name}", $post );
        }
     
        return $post;
    }
     
    /**