Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

kısa kod

// Add Shortcode
function grafik_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'title' => 'BIST100',
			'tab1' => 'Günlük',
			'tab2' => 'Haftalık',
		),
		$atts,
		'grafik'
	);

}
add_shortcode( 'grafik', 'grafik_shortcode' );