-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-tips-tricks.php
49 lines (45 loc) · 1.31 KB
/
page-tips-tricks.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* @package WordPress
* @subpackage Catt_Theme
*/
get_header(); ?>
<!-- content -->
<div class="content">
<!-- portfolio work & blog -->
<?php get_sidebar(); ?>
<section class="three-fourths blog-page">
<section class="blog">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?>>
<header><h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1></header>
<section class="meta"><?php entry_meta(); ?></section>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
<?php else : ?>
<p>There are no blog posts.</p>
<?php endif; ?>
</section>
<section class="tips-tricks">
<header>
<h2>All Tips & Tricks</h2>
</header>
<!-- query portfolio -->
<?php query_posts('category_name=tips-tricks'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class(); ?>>
<header><h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1></header>
<section class="meta"><?php entry_meta(); ?></section>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
<div class="clearfix"></div>
<?php else : ?>
<p>There are no posts.</p>
<?php endif; ?>
</section>
</section>
<div class="clearfix"></div>
</div>
<?php get_footer(); ?>