Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Americano_PlaceToPay

Buton link

// Add Shortcode
function placetopay_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'link' => 'http://localhost:8000',
			'price' => '0.00',
			'user_id' => 'user_id',
		),
		$atts,
		'btn_placetopay'
	);

	//Custom code to generate the output

}
add_shortcode( 'btn_placetopay', 'placetopay_shortcode' );