Skip to content

Instantly share code, notes, and snippets.

@jaggy
Created April 1, 2014 12:18
Show Gist options
  • Save jaggy/9912811 to your computer and use it in GitHub Desktop.
Save jaggy/9912811 to your computer and use it in GitHub Desktop.
<?php
function sc_dropdown( $field, $repeater )
{
$plural = array();
foreach(get_field( $field ) as $singular){
$plular = $singular[ $repeater ];
}
return implode( '|', $plural );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment