Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Karl-Johan Gyllenstorm

Short code for publish the Swedish version of the app Marknadsandels Applikationen as content in your Wordpress backend.

// Add Shortcode
function custom_shortcode() {

	<!DOCTYPE html>
	<html>
	<body>
	
	<h1>Marknadsandels Applikationen</h1>
	
	<p>Hitta lättplockade marknadsandelar i sökmotorn Google.</p>
	<iframe src="https://www.appsheet.com/start/10675450-7dbd-4671-906b-6d4db9cde98f" width="100%" height="600" style="border:none;">
	</iframe>
	
	</body>
	</html>

}
add_shortcode( 'Gyllenstorm', 'custom_shortcode' );