$post_meta_val = ( $post ) ? get_post_meta($post->ID, $result->field_name, true) : false;
foreach ( $options as $option ) {
$args = array( 'value' => $option );
if ( $option == $post_meta_val )
$args['selected'] = 'selected';
$args = apply_filters( 'cp_formbuilder_' . $result->field_name . '_option', $args, $result, $post );
$html_options .= html( 'option', $args, $option );
}
There are currently 1 users browsing this thread. (0 members and 1 guests)