Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save onwp/88ffbbf1f8ed7b7aa725be963860a479 to your computer and use it in GitHub Desktop.
Save onwp/88ffbbf1f8ed7b7aa725be963860a479 to your computer and use it in GitHub Desktop.
<?php
add_filter('acf/pre_load_reference', 'hwk_bypass_get_field_ref', 10, 3);
function hwk_bypass_get_field_ref($return, $field_name, $post_id){
if(is_int($post_id))
$return = acf_get_field($field_name, $post_id);
return $return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment