Skip to content

Instantly share code, notes, and snippets.

View traversal's full-sized avatar

Travis Hensgen traversal

  • Traversal
  • Melbourne, Australia
View GitHub Profile
@traversal
traversal / gist:f0db969a8732f5df9ad0
Created April 13, 2015 00:03
Filter By Custom Field
<?php
$args = array(
'meta_query' => array(
array(
'key' => 'fields.type',
'value' => 'bnb',
'compare' => '=',
)
)
@traversal
traversal / gist:218fd5c55bf38f91651f
Created June 19, 2015 04:15
Checkbox Selections
<?php
global $wf;
// suppose you have a post of type "family", slug "smith-family", with field set "details", and field "education_levels"
$selections = $wf->family( "smith-family" )->details->education_levels->selections();
// $selections is now a value-label pair of the current selections.