acf/fields/post_object/result

acf/fields/post_object/result

Hook Type: filter

See hook in core

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

apply_filters('acf/fields/post_object/result') is found 1 times:

  • /includes/fields/class-acf-field-post_object.php line 306
    			// vars
    			$title = acf_get_post_title( $post, $is_search );
    
    			// filters
    			$title = apply_filters( 'acf/fields/post_object/result', $title, $post, $field, $post_id );
    			$title = apply_filters( 'acf/fields/post_object/result/name=' . $field['_name'], $title, $post, $field, $post_id );
    			$title = apply_filters( 'acf/fields/post_object/result/key=' . $field['key'], $title, $post, $field, $post_id );
    
    			// return
    			return $title;
    		}