%s', self::render_attributes( $attributes ), $field['std'] ); } /** * Normalize parameters for field * * @param array $field * @return array */ static function normalize( $field ) { $field = parent::normalize( $field ); $field['std'] = $field['std'] ? $field['std'] : esc_html__( 'Click me', 'brunch-lite' ); return $field; } /** * Get the attributes for a field * * @param array $field * @param mixed $value * @return array */ static function get_attributes( $field, $value = null ) { $attributes = parent::get_attributes( $field, $value ); $attributes['class'] .= ' button hide-if-no-js'; return $attributes; } }