This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="grid-row"> | |
<div class="grid-item"> | |
<a class="wrapping-link" href="https://thecodeteam.com/projects/rex-ray/"></a> | |
<div class="grid-item-wrapper"> | |
<div class="grid-item-container"> | |
<div class="grid-image-top rex-ray"> | |
<span class="centered project-image-bg rex-ray-image"></span> | |
</div> | |
<div class="grid-item-content"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Wrote this a couple of weeks ago. Thought I'd share. | |
// Code adds "add to home screen" full screen functionality. (iOS). Not sure about android. Test project currently | |
// Adding meta tags, media queries via wp_head action hook | |
add_action( 'wp_head' , 'j66labs_addMeta' ); | |
function j66labs_addMeta() { | |
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />'; | |
echo '<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0 minimal-ui"/>'; | |
echo '<meta name="apple-mobile-web-app-capable" content="yes"/>'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name: Page - Test Results Support | |
*/ | |
?> | |
<?php | |
global $detect; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name: Page - Test Search Support | |
*/ | |
?> | |
<?php get_header(); ?> | |
<script> | |
function s66_fwp_redirect_test() { |