Skip to content

Instantly share code, notes, and snippets.

@solid-pixel
Last active January 17, 2018 10:41
Show Gist options
  • Save solid-pixel/e0040f6ca9aabb90555094ce1e2f4172 to your computer and use it in GitHub Desktop.
Save solid-pixel/e0040f6ca9aabb90555094ce1e2f4172 to your computer and use it in GitHub Desktop.
[WordPress] Use the plugin "The Grid" to display ACF relationships
<?php //remove this
function my_query_args($query_args, $grid_name) {
if ($grid_name == 'Related Treatments') {
$treatments = get_field('related_treatments', get_the_ID(), false);
$query_args['post__in'] = $treatments;
}
return $query_args;
}
add_filter('tg_wp_query_args', 'my_query_args', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment