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
Using the shortcode like this... | |
[h2] | |
<h2>Heading Text Here</h2> | |
<img src="http://placehold.it/400x300"> | |
[/h2] | |
Would output this.... |
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
javascript:(function(n,t){t['true']=n;var i=function(n,t,i){var r=n.style;r.webkitTransition=r.transition=i+'s';r.webkitTransitionTimingFunction=r.TransitionTimingFunction='ease-in-out';r.webkitTransform=r.Transform='translate3d(0, '+-t+'px, 0)'};var r=function(){var n=[].slice.call(arguments);var t=n.shift(),i=n.shift(),r=n;setTimeout(function(){i.apply(null,r)},t*1e3)};var e=function(n,t,i,e){r(t,o,i,e)};var a=document.getElementsByTagName('body')[0];var o=i.bind(null,a);var s=e.bind(null,a);var l=function(n){var t='Enter delay (in seconds), distance to scroll (in pixels) and the scroll duration (in seconds).\n\nRun the script a second time with options 0 0 0 to reset the page.\n\nExample:\n\n1 800 5';if(n){t=n+'\n\n'+t}var i=prompt(t);if(i===null){return}if(/\d{1,} \d{1,} \d{1,}/.test(i)){return i.split(' ')}return l('Woops. Input invalid: '+i)};var u=function(){var n=l();if(n){s.apply(null,n)}};u()})({},function(){return this}()); |
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
<span class="timer"></span> | |
<hr/> | |
<span id="help">From: 50 - To: 2500 / Over 5000 Milli-Seconds</span> | |
.timer{width:200px; margin:20px auto;text-align:center;display:block;font-size:20px} | |
#help{width:500px; margin:20px auto;text-align:center;display:block;font-size:14px} | |
(function($) { | |
$.fn.countTo = function(options) { | |
// merge the default plugin settings with the custom options |
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
[ | |
{ | |
"key": "group_57066554c9959", | |
"title": "Site Options", | |
"fields": [ | |
{ | |
"key": "field_570666d4163cb", | |
"label": "Logo", | |
"name": "logo", | |
"type": "image", |
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
/* This functions.php filter is required to make the MIME Types plugin work with ACF content fields */ | |
+add_filter ('acf_the_content', 'mimetypes_to_icons', 15); |
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
/* ---------------------------- Begin WordPress Core ---------------------------- */ | |
img { | |
max-width: 100%; | |
height: auto; | |
} | |
.alignnone { | |
margin: 5px 20px 20px 0; | |
} |