Guest User

Untitled

a guest
Dec 13th, 2014
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.05 KB | None | 0 0
  1.     <?php get_header(); ?>
  2.  
  3.  
  4.     <?php
  5.         query_posts('posts_per_page=1');
  6.             while(have_posts()) : the_post(); ?>
  7.  
  8.             <div class="jumbotron" style="inline-block">
  9.                 <h2><a href="<?php the_permalink('http://viso.lv/wordpress/?p=76'); ?>"><?php the_title(); ?></a></h2>
  10.                 <p><?php the_excerpt(); ?></p>
  11.             </div>
  12.         <?php endwhile; wp_reset_query(); ?>
  13.  
  14.             <div class="panel panel-body panel-default">
  15.                 <div class="row">
  16.                     <div class="col-md-2">
  17.                         <ul class="nav nav-pills nav-stacked">
  18.                             <?php wp_list_categories('orderby=name&title_li='); ?>
  19.                         </ul>
  20.                     </div><!-- end of col md-2 -->
  21.                     <div class="col-md-10">
  22.                         <?php while(have_posts()) : the_post(); ?>
  23.  
  24.                         <h3><a href="<?php the_permalink('http://viso.lv/wordpress/?p=76'); ?>"><?php the_title(); ?></a></h3>
  25.                         <p><?php the_excerpt(); ?></p>
  26.                         <p class="text-muted">Опубликовано <?php the_author(); ?> на <?php the_time('F jS, Y'); ?></p>
  27.  
  28.                         <?php endwhile; wp_reset_query(); ?>
  29.                     </div>
  30.                 </div>
  31.             </div>
  32.      
  33. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment