Last active
January 17, 2018 10:41
-
-
Save solid-pixel/e0040f6ca9aabb90555094ce1e2f4172 to your computer and use it in GitHub Desktop.
[WordPress] Use the plugin "The Grid" to display ACF relationships
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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