Hi, I'm using the Admin Columns plugin to display data from a dropdown. If there is nothing selected, the following notice displays: Notice: Undefined index: in /home/ubuntu/app/wp/wp-content/plugins/meta-box/inc/fields/choice.php on line 129
Wrapping that block in an isset fixes the notice:
if ( isset( $options[ $value ] ) ){
return $options[ $value ]->label;
}
Thanks for all these great plugins!