Skip to content

Instantly share code, notes, and snippets.

@Roy-Oto
Created April 29, 2021 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Roy-Oto/8600d2f6a4e30bfca1f21e3cad7262ec to your computer and use it in GitHub Desktop.
Save Roy-Oto/8600d2f6a4e30bfca1f21e3cad7262ec to your computer and use it in GitHub Desktop.
To display a drop-down list in Custom Field Suite.
<?php
$values = CFS()->get( 'my_select' );
foreach ( $values as $key => $label ) {
echo $label;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment