Make WordPress Themes

source: lightning/13.1.1/sidebar-post.php

Last change on this file was 139196, checked in by themedropbox, 5 years ago

New version of Lightning - 13.1.1

File size: 1.9 KB
Line 
1<?php
2if ( is_active_sidebar( 'common-side-top-widget-area' ) ) {
3        dynamic_sidebar( 'common-side-top-widget-area' );
4}
5
6// Display post type widget area
7$widdget_area_name = 'post-side-widget-area';
8if ( is_active_sidebar( $widdget_area_name ) ) {
9        dynamic_sidebar( $widdget_area_name );
10} else { ?>
11
12<?php
13$post_loop = new WP_Query(
14        array(
15                'post_type'              => 'post',
16                'posts_per_page'         => 10,
17                'no_found_rows'          => true,
18                'update_post_meta_cache' => false,
19                'update_post_term_cache' => false,
20        )
21);
22?>
23
24<?php if ( $post_loop->have_posts() ) : ?>
25<aside class="widget widget_postlist">
26<h1 class="subSection-title"><?php echo __( 'Recent posts', 'lightning' ); ?></h1>
27<?php
28while ( $post_loop->have_posts() ) :
29        $post_loop->the_post();
30?>
31
32  <div class="media">
33
34        <?php if ( has_post_thumbnail() ) : ?>
35
36          <div class="media-left postList_thumbnail">
37                <a href="<?php the_permalink(); ?>">
38                <?php the_post_thumbnail( 'thumbnail' ); ?>
39                </a>
40          </div>
41
42        <?php endif; ?>
43
44        <div class="media-body">
45          <h4 class="media-heading"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
46          <div class="published entry-meta_items"><?php echo get_the_date(); ?></div>
47        </div>
48  </div>
49
50<?php endwhile; ?>
51</aside>
52<?php endif; ?>
53<?php wp_reset_query(); ?>
54
55<aside class="widget widget_categories widget_link_list">
56<nav class="localNav">
57<h1 class="subSection-title"><?php _e( 'Category', 'lightning' ); ?></h1>
58<ul>
59        <?php wp_list_categories( 'title_li=' ); ?>
60</ul>
61</nav>
62</aside>
63
64<aside class="widget widget_archive widget_link_list">
65<nav class="localNav">
66<h1 class="subSection-title"><?php _e( 'Archive', 'lightning' ); ?></h1>
67<ul>
68        <?php
69        $args = array(
70                'type'      => 'monthly',
71                'post_type' => 'post',
72        );
73        wp_get_archives( $args );
74        ?>
75</ul>
76</nav>
77</aside>
78
79<?php
80}
81
82if ( is_active_sidebar( 'common-side-bottom-widget-area' ) ) {
83        dynamic_sidebar( 'common-side-bottom-widget-area' );
84}
Note: See TracBrowser for help on using the repository browser.