Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Olark Code

Your Olark install code — requires your siteID.

// Add Shortcode
function olark_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'siteid' => '',
		),
		$atts
	);

	return '
	<!-- begin olark code -->
	<script type="text/javascript" async> ;(function(o,l,a,r,k,y){if(o.olark)return; r="script";y=l.createElement(r);r=l.getElementsByTagName(r)[0]; y.async=1;y.src="//"+a;r.parentNode.insertBefore(y,r); y=o.olark=function(){k.s.push(arguments);k.t.push(+new Date)}; y.extend=function(i,j){y("extend",i,j)}; y.identify=function(i){y("identify",k.i=i)}; y.configure=function(i,j){y("configure",i,j);k.c[i]=j}; k=y._={s:[],t:[+new Date],c:{},l:a}; })(window,document,"static.olark.com/jsclient/loader.js");
	/* custom configuration goes here (www.olark.com/documentation) */
	olark.identify('.$atts["siteid"].');</script>
	<!-- end olark code -->
	'

}
add_shortcode( 'olark', 'olark_shortcode' );