Moved ... https://github.com/ryanburnette/fragment-cache
This file contains 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 | |
function format_phone_number($phone) { | |
$phone = preg_replace("/[^0-9]/", "", $phone); | |
if ( strlen($phone) == 7 ) { | |
return preg_replace("/([0-9]{3})([0-9]{4})/", "$1-$2", $phone); | |
} | |
if ( strlen($phone) == 10 ) { | |
return preg_replace("/([0-9]{3})([0-9]{3})([0-9]{4})/", "($1) $2-$3", $phone); | |
} | |
return $phone; |
This file contains 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
// Helpers, adapted from HTML5 boilerplate | |
// Image replacement | |
@mixin ir { | |
background-color: transparent; | |
border: 0; | |
overflow: hidden; | |
/* IE 6/7 fallback */ | |
*text-indent: -9999px; | |
&:before { |
This file contains 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 is one method that can be used to check if a method is valid. Then do something if that method proves valid. | |
*/ | |
if ( $.isFunction($.fn.myFunction) === true ) { | |
/* Do stuff here */ | |
} |
This file contains 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 | |
/* | |
Plugin Name: My Theme Options | |
Plugin URI: / | |
Description: These are my theme options. | |
Version: 1.0.0 | |
Author: Me | |
Author URI: / | |
*/ |
This file contains 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 | |
/* | |
Plugin Name: My Theme Options | |
Plugin URI: / | |
Description: My Theme Options | |
Version: 1.0.0 | |
Author: Me | |
Author URI: / | |
*/ |
This file contains 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
function init_hovers() { | |
var $hovers = $('.dohover'); // Elements that get the .hover class | |
$hovers.off('mouseenter mouseleave'); | |
$hovers.hover(function() { | |
$(this).stop(true,true).toggleClass('hover', 1000); | |
}); | |
} |
This file contains 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
{% for i in (1..number_of_slides) %} | |
{% capture slide_enabled %}slideshow_{{ i }}_active{% endcapture %} | |
{% capture slide_image %}slideshow_{{ i }}.jpg{% endcapture %} | |
{% capture slide_image_alt %}slideshow_{{ i }}_alt{% endcapture %} | |
{% capture slide_link %}image_{{ i }}_link{% endcapture %} | |
{% if settings[slide_enabled] %} | |
<li class="slide"><img src="{{ slide_image | asset_url }}" data-url="{{ settings[slide_link] }}" alt="{{ settings[slide_image_alt] }}" class="slide-img" /></li> | |
{% endif %} |
This file contains 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="element" id="element-{{}}"> | |
<span>Some stuff goes here. And it is sequential ... item #{{}}.</span> | |
</div> |
OlderNewer