Skip to content

Instantly share code, notes, and snippets.

@ThomasLarge
Created October 30, 2017 16:41
Show Gist options
  • Save ThomasLarge/931d6284906d36b2f19f01c1a5b08dfe to your computer and use it in GitHub Desktop.
Save ThomasLarge/931d6284906d36b2f19f01c1a5b08dfe to your computer and use it in GitHub Desktop.
WP snippets (HTML, inside theme)
<a class="<?php if (is_page('PAGE ID')) echo 'current_page_item'; ?>">LINK HERE</a>
<?php query_posts(array(
'post_type' => 'deals',
'posts_per_page' => 3
) );
?>
<?php while (have_posts()) : the_post(); ?>
<!-- Content here -->
<?php endwhile;?>
<?php wp_reset_query(); ?> // Always reset the loop
<?php echo do_shortcode('SHORTCODE HERE'); ?>
<?php bloginfo('template_directory'); ?>
// This is where all of the snippets for Wordpress lives
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment