Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

input

// Add Shortcode
function sc_input( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'type' => 'text',
			'placeholder' => '请输入…',
		),
		$atts,
		'input'
	);

	// Return custom embed code
	return '<input 
	         class="uk-input uk-form-input"
	         type="' . $atts['type'] . '"
	         placeholder="' . $atts['placeholder'] . '">';

}
add_shortcode( 'input', 'sc_input' );