[shortcode]

källa: GenerateWp |

Utkast ”shortcode”

[show_tickets | user=”all” | status=”all” | view=”aktuella” ]

 

// Add Shortcode
function custom_shortcodeshow_tickets( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'user' => 'all',
			'status' => 'all',
			'view' => 'aktuella',
		),
		$atts,
		'kund'
	);

}
add_shortcode( 'kund', 'custom_shortcodeshow_tickets' );