Last active
June 8, 2017 14:09
-
-
Save ScarletPonytail/e20acd21c6664e81faae17572a82b64c to your computer and use it in GitHub Desktop.
WordPress - Blog on 'Page'
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 | |
/* | |
Template Name: Press & Media Blog | |
*/ | |
?> | |
<?php get_header(); ?> | |
<div class="container"> | |
<h1>Press & Media</h1> | |
<p>Members of our team have been interviewed by international and UK media to explain the dynamics of the fine wine market and the treatment of fine wine as an alternative asset for investment purposes.</p> | |
<p>See the video clips below of interviews on Bloomberg, CNBC, Fox News and others along with footage of England International Rugby star, Austen Healey, discussing his interest in fine wine.</p> | |
<hr /> | |
<?php | |
// Display blog posts on any page @ https://m0n.co/l | |
$temp = $wp_query; $wp_query= null; | |
$wp_query = new WP_Query(); $wp_query->query('cat=6&posts_per_page=10' . '&paged='.$paged); | |
while ($wp_query->have_posts()) : | |
$wp_query->the_post(); | |
?> | |
<h3> | |
<a href="<?php the_permalink(); ?>" title="Read more"> | |
<?php the_title(); ?> | |
</a> | |
</h3> | |
<!-- Meta --> | |
<section class="entry-meta mb-lg"> | |
<span class="author vcard"> | |
<strong>Added by:</strong> | |
<span class="text-capitalize"> | |
<?php the_author_posts_link(); ?> | |
</span> | |
</span> | |
<span class="meta-sep">on </span> | |
<span class="entry-date"> | |
<?php the_time( get_option( 'date_format' ) ); ?> | |
</span> | |
</section> | |
<?php the_content(); ?> | |
<div class="clearfix"></div> | |
<span class="cat-links"> | |
<?php _e( 'Category: ', 'blankslate' ); ?> | |
<?php the_category( ', ' ); ?> | |
</span> | |
<div class="clearfix"></div> | |
<hr /> | |
<?php endwhile; ?> | |
<?php if ($paged > 1) { ?> | |
<nav id="nav-posts"> | |
<div class="prev"> | |
<?php next_posts_link('« Previous Posts'); ?> | |
</div> | |
<div class="next"> | |
<?php previous_posts_link('Newer Posts »'); ?> | |
</div> | |
</nav> | |
<?php } else { ?> | |
<nav id="nav-posts"> | |
<div class="prev"> | |
<?php next_posts_link('« Previous Posts'); ?> | |
</div> | |
</nav> | |
<?php } ?> | |
<?php wp_reset_postdata(); ?> | |
</div> | |
<?php get_footer(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment