‘meta_query’ => array( ‘relation’ => ‘AND’, array( ‘key’ => ‘color’, ‘value’ => array(‘red’, ‘orange’), ‘compare’ => ‘IN’, ), array( ‘key’ => ‘featured’, ‘value’ => ‘1’, ‘compare’ => ‘=’, ), ),
.full-width { left: 50%; margin-left: -50vw; margin-right: -50vw; max-width: 100vw; position: relative; right: 50%; width: 100vw; }
// Adds class for IE 10 //—————————————— var ie_version = getIEVersion(); var is_ie10 = ie_version.major == 10; if(is_ie10) { $(‘html’).addClass(‘is_ie10’); } function getIEVersion(){ var agent = navigator.userAgent; var reg = /MSIEs?(d+)(?:.(d+))?/i; var matches = agent.match(reg); if (matches != null) { return { major: matches[1], minor: matches[2] }; } return { major: “-1”, minor: “-1” }; […]
// Google Maps API key define (‘GOOGLE_MAPS_API_KEY’, ‘key’);