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
@media only screen and (min-width: 0px) and (max-width: 320px) { | |
} | |
/* Smartphones (portrait and landscape) ----------- */ |
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 | |
add_action( 'woo_nav_inside', 'woo_add_nav_search', 30 ); | |
if ( ! function_exists( 'woo_add_nav_search' ) ) { | |
function woo_add_nav_search () { ?> | |
<div class="fr"> | |
<?php get_search_form(); ?> | |
</div> |
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 | |
// Remove logo code from Canvas | |
add_action('wp_head', 'remove_woo_logo'); | |
function remove_woo_logo() { | |
remove_action('woo_header_inside','woo_logo'); | |
} | |
/*-----------------------------------------------------------------------------------*/ |
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 BuilderChild-Air. Can be used in any child theme in conjunction with http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_2#How_to_Create_Mobile_Navigation_like_the_new_Air_Theme | |
Code in PHP enabled HTML module (2nd module from top in layout) where "All Pages" is the name of custom menu: | |
<a id="logo" href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo( 'stylesheet_directory' ); ?>/images/100x50.gif" alt="Home" /></a> | |
<?php wp_nav_menu( array( 'menu' => 'All Pages', 'menu_class' => 'builder-module-navigation') ); ?> |
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
[pb_vidembed title="" caption="" url='[types field="youtube-link" class="youtube-video" raw="true"][/types]' type="yt" w="270" h="217"] |
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
add_action( 'genesis_before_entry_content','sri_add_date'); | |
function sri_add_date () { | |
if (is_home() || is_archive()) { ?> | |
<div class="my-date"> | |
<span class="my-date-day"><?php echo do_shortcode("[post_date format='j']"); ?></span> | |
<span class="my-date-month"><?php echo do_shortcode("[post_date format='M']"); ?></span> | |
</div> | |
<?php } | |
} | |
//* Customize the post info function |
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 | |
//* Do NOT include the opening php tag | |
// ================================================================= | |
// = Pinterest-like Masonry layout for Posts page and Archives = | |
// ================================================================= | |
//* Enqueue and initialize jQuery Masonry script | |
function sk_masonry_script() { | |
if (is_home() || is_archive()) { |
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
/**************************************************************** | |
Pinterest-like Masonry layout for Posts page and Archives | |
****************************************************************/ | |
.masonry-page .content .entry { | |
padding: 0; | |
border-radius: 0; | |
width: 255px; | |
overflow: hidden; | |
} |
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
<article> | |
<header> | |
<h4><a title="[wpv-post-title]" href="[wpv-post-url]">[wpv-post-title]</a></h4> | |
<em class="date"> | |
<time datetime="[wpv-post-date format="c"]" itemprop="datePublished"> | |
<span class="month">[wpv-post-date format="M"]</span> | |
<span class="day">[wpv-post-date format="j"]</span> | |
</time> | |
</em> | |
</header> |
OlderNewer