Add custom options to the wplink dialog

I managed to add a custom option-select for images with function attachment_field_credit( $form_fields, $post ) { $field_value = get_post_meta( $post->ID, ‘first_image’, true ); $isSelected1 = $field_value == ‘1’ ? ‘selected ‘ : ”; $isSelected2 = $field_value != ‘1’ ? ‘selected ‘ : ”; $form_fields[‘first_image’] = array( ‘label’ => __( ‘Use as first image’ ), ‘input’ … Read more