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
function jg_excerpt($num) { | |
$limit = $num+1; | |
$excerpt = explode(' ', get_the_excerpt(), $limit); | |
array_pop($excerpt); | |
$excerpt = implode(" ",$excerpt).""; // Put anything between the "" for end of excerpt | |
echo $excerpt; | |
} |
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 | |
/* | |
* Resize images dynamically using wp built in functions | |
* Victor Teixeira | |
* | |
* php 5.2+ | |
* | |
* Exemplo de uso: | |
* | |
* <?php |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Stanley Rost</string> | |
<key>comment</key> | |
<string>(π) Soryu, 2005</string> | |
<key>name</key> | |
<string>Sunburst</string> |
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
.template_pets_wrap .pet_meta_wrap ul li:before { | |
content: "\f00c"; | |
font-family: FontAwesome; | |
font-size: .85em; | |
display: inline-block; | |
margin-left: -1.2em; | |
width: 1.5em; | |
color: #e2e2e2; | |
} |
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
/** | |
* Custom Customizer Style | |
*/ | |
function custom_customizer_style() { | |
wp_enqueue_style( 'rescue-customizer-style', get_template_directory_uri() . '/customizer/style.css', array(), '', 'all' ); | |
} | |
add_action( 'customize_controls_enqueue_scripts', 'custom_customizer_style' ); |
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
0,15,30,45 * * * * curl -I http://rescuethemes.com/leafping/wp-cron.php?doing_wp_cron |
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
.top-bar-section li.current_page_item:not(.has-form) a:not(.button) { | |
color: #aaaaaa; | |
} | |
/* For mobile only, use this */ | |
@media only screen and (max-width: 40em) { | |
.top-bar-section li.current_page_item:not(.has-form) a:not(.button) { | |
color: #aaaaaa; | |
} |
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
/* Change the number to reflect however many prodcuts to show in a single row */ | |
if (!function_exists('merch_loop_columns')) { | |
function merch_loop_columns() { | |
return 3; | |
} | |
} |
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
.woocommerce.archive ul.products li.product { | |
margin-bottom: 5em; | |
} | |
.woocommerce.archive ul.products li.product h3 { | |
top: 1.5em; | |
color: #616671; | |
} | |
.woocommerce.archive mark { | |
background-color: #f6f6f6; | |
color: #888f9e; |
OlderNewer