How to Add a shortcode to a WordPress Template php file Posted on March 4, 2021March 4, 2021 by SEO Brisbane Search Tempo Open up the php template file. Appearance - Theme Editor Add the code: <?php echo do_shortcode( '' ); ?> The part within the [ ] is the shortcode name Read More
Show on mobiles only Posted on October 16, 2017October 16, 2017 by SEO Brisbane Search Tempo CSS CODE .mobileShow { display: none; margin-bottom: -5px; padding-bottom: -5px; } /* Smartphone Portrait and Landscape */ @media only screen and (min-device-width : 320px) and (max-device-width : 780px) { .mobileShow { display: inline !important; } } Read More