Skip to content

Instantly share code, notes, and snippets.

@redsoxfan2499
Created November 18, 2019 02:01
Show Gist options
  • Save redsoxfan2499/f58931c444ad6de95dd43d0b4b67f6cc to your computer and use it in GitHub Desktop.
Save redsoxfan2499/f58931c444ad6de95dd43d0b4b67f6cc to your computer and use it in GitHub Desktop.
WordPress Get Custom Fields / ACF Fields to be included in custom WP Query
/** Place this in themes functions.php file **/
function my_always_get_post_custom( $posts ) {
for ( $i = 0; $i < count($posts); $i++ ) {
$custom_fields = get_post_custom( $posts[$i]->ID );
$posts[$i]->custom_fields = $custom_fields;
}
return $posts;
}
add_filter( 'the_posts', 'my_always_get_post_custom' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment