Support

Account

Home Forums Bug Reports ACF 5.4 preview changes no longer works Reply To: ACF 5.4 preview changes no longer works

  • Just re-downloaded the files..
    This function doesn’t appear in api/api-template.php

    Line 744 has

    
    
    /*
    *  has_sub_field()
    *
    *  This function is used inside a while loop to return either true or false (loop again or stop).
    *  When using a repeater or flexible content field, it will loop through the rows until 
    *  there are none left or a break is detected
    *
    *  @type	function
    *  @since	1.0.3
    *  @date	29/01/13
    *
    *  @param	$field_name (string) the field name
    *  @param	$post_id (mixed) the post_id of which the value is saved against
    *  @return	(boolean)
    */
    
    function has_sub_field( $field_name, $post_id = false ) {....
    

    It does appear in api/api-helpers.php at line 767

    
    /*
    *  acf_verify_nonce
    *
    *  This function will look at the $_POST['_acfnonce'] value and return true or false
    *
    *  @type	function
    *  @date	15/10/13
    *  @since	5.0.0
    *
    *  @param	$nonce (string)
    *  @return	(boolean)
    */
    
    function acf_verify_nonce( $value, $post_id = 0 ) {....
    

    Was there a different file I should have downloaded?