Skip to content

Instantly share code, notes, and snippets.

@isotrope
Created February 10, 2015 21:08
Show Gist options
  • Save isotrope/0623ce0ff1336e101eb8 to your computer and use it in GitHub Desktop.
Save isotrope/0623ce0ff1336e101eb8 to your computer and use it in GitHub Desktop.
selected( $selected, $current, $echo);
<?php
/**
* selected( $selected, $current, $echo);
*
* http://codex.wordpress.org/Function_Reference/selected
*/
foreach ( $users as $user ) {
echo '<option value="' . $user->id . '" ' . selected( $prop_photographe, $user->ID, false ) . '>' . $user->data->display_name . '</option>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment