-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.php
More file actions
42 lines (41 loc) · 1.65 KB
/
archive.php
File metadata and controls
42 lines (41 loc) · 1.65 KB
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
<?php
/*
* Template for displaying news (world and company)
*
* @package WordPress
* @subpackage npoat
* @since npoat 2.0.1
*
*/
get_header()
?>
<?php if ( have_posts() ) : ?>
<div class="container_16 content-wrapper">
<div class="grid_4 sidebar">
<div class="page-title">
<h2>Новости</h2>
<ul class="child-pages">
<?php wp_list_categories( "title_li=&child_of=4" ); ?>
</ul>
</div>
</div>
<div class="grid_12 alpha omega content-blog-page">
<?php while ( have_posts() ) : the_post(); ?>
<div class="grid_12 post-wrapper" >
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="post-title">
<h2><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'npoat' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
</div>
<div class="post-content">
<?php the_content('Читать далее →'); ?>
</div>
<div class="post-meta">
<span class='published'>Опубликовано:</span> <a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'npoat' ), the_title_attribute( 'echo=0' ) ); ?>" rel='bookmark'><?php echo the_date('d.m.y в G:H'); ?><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'npoat' ), the_title_attribute( 'echo=0' ) ); ?>" class='custom-more-link'>Читать далее →</a>
</div>
</div><!-- #post-<?php the_ID(); ?> -->
</div>
<?php endwhile; ?>
</div>
</div>
<?php endif; ?>
<?php get_footer(); ?>