{$i18n_title}"; return $html; } /** * Get field value * It's the combination of new (uploaded) images and saved images * * @param array $new * @param array $old * @param int $post_id * @param array $field * * @return array */ public static function value( $new, $old, $post_id, $field ) { return array_filter( array_unique( array_merge( (array) $old, (array) $new ) ) ); } }