', self::render_attributes( $attributes ), checked( ! empty( $meta ), 1, false ) ); if ( $field['desc'] ) { $output = ""; } return $output; } /** * Do not show field description. * * @param array $field * @return string */ public static function element_description( $field ) { return ''; } /** * Format a single value for the helper functions. * * @param array $field Field parameter * @param string $value The value * @return string */ public static function format_single_value( $field, $value ) { return $value ? esc_html__( 'Yes', 'brunch-lite' ) : esc_html__( 'No', 'brunch-lite' ); } }