This repository was archived by the owner on Dec 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.php
59 lines (49 loc) · 2.06 KB
/
blogs.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
50
51
52
53
54
55
56
57
58
59
<?php
/**
* Template Name: Blogs
* Description: Displays all blogs
*/
get_header(); ?>
<div class="main-content">
<div class="entry-content">
<?php the_title( '<h1>', '</h1>' ); ?>
<?php
// Start the loop.
while ( have_posts() ) : the_post();
// Include the page content template.
the_content();
?>
</div><!-- /.entry-content -->
<section class="tabs">
<input id="tab-one" type="radio" name="grp" checked="checked"/>
<label for="tab-one" class="tab-title">All</label>
<div class="tab-content">
<?php echo do_shortcode('[ajax_load_more max_pages="0" posts_per_page="8"]');?>
</div>
<input id="tab-two" type="radio" name="grp" />
<label for="tab-two" class="tab-title">Sport</label>
<div class="tab-content">
<?php echo do_shortcode('[ajax_load_more post_type="post" category="sport" max_pages="0" posts_per_page="8"]');?>
</div>
<input id="tab-three" type="radio" name="grp" />
<label for="tab-three" class="tab-title">Music</label>
<div class="tab-content">
<?php echo do_shortcode('[ajax_load_more post_type="post" category="music" max_pages="0" posts_per_page="8"]');?>
</div>
<input id="tab-four" type="radio" name="grp" />
<label for="tab-four" class="tab-title">Opinion</label>
<div class="tab-content">
<?php
echo do_shortcode('[ajax_load_more post_type="post" category="opinion" max_pages="0" posts_per_page="8"]');
// End the loop.
endwhile;
?>
</div>
<input id="tab-five" type="radio" name="grp" />
<label for="tab-five" class="tab-title">Interviews</label>
<div class="tab-content">
<div class="audioboom-feed" data-channel-id="4374382" data-channel-audioboom-type="users" data-channel-type="urn-interviews" data-channel-name="URN Interviews"></div>
</div>
</section>
</div> <!-- /.main-content -->
<?php get_footer(); ?>