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 wp_reset_query(); ?> |
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
git checkout -b experimental origin/experimental |
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
.navbar-inner{ | |
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); | |
} |
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 | |
$terms = get_the_terms( $post->ID , 'taxonomyname' ); | |
foreach ( $terms as $term ) { | |
echo $term->name; | |
} |
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
ul.disc-aligned { | |
display: table; | |
padding-left:20px; | |
} | |
ul.disc-aligned > li { | |
margin-bottom: 5px; | |
} | |
ul.disc-aligned > li::before { |
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 if( have_rows('content_blocks') ): ?> | |
<?php while ( have_rows('content_blocks') ) : the_row(); ?> | |
<h2><?php the_sub_field('content_block_title'); ?></h2> | |
<p><?php the_sub_field('content_block_content'); ?></p> | |
<?php endwhile; ?> | |
<?php endif; ?> |
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
jQuery( document ).ready(function( $ ) { | |
// Code that uses jQuery's $ can follow here. | |
}); |
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 | |
$args = array( | |
'post_type' => 'event', | |
'orderby' => 'event_date menu_order', | |
'order' => ASC, | |
'posts_per_page' => -1, | |
'meta_key' => 'event_date' | |
); | |
$query = new WP_Query( $args ); | |
?> |