Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php get_header(); ?>
- <!--Body Portion Starts -->
- <div id="bodyportion">
- <div class="body">
- <div> </div>
- <?php if (have_posts()) : $count = 0; ?>
- <?php while (have_posts()) : the_post(); $count++; ?>
- <?php $page_title = get_post_meta($post->ID, 'page_title', true); ?>
- <?php $page_subtitle = get_post_meta($post->ID, 'page_subtitle', true); ?>
- <?php include( TEMPLATEPATH . '/modules/featured.php' ); ?>
- <!--Body Content Starts -->
- <div class="contentarea">
- <?php
- query_posts('post_type=post');
- if(have_posts()){
- while(have_posts()): the_post();
- the_title(); // exibe titulo
- endwhile;
- } ?>
- <h1><a href="<?php the_permalink(); ?>" title="<?php esc_attr(
- the_title() ); ?>"><?php the_title(); ?></a></h1>
- <div class="leftportion">
- <div class="about">
- <?php the_content(); ?>
- <?php endwhile; else: ?>
- <?php $page_title = 'Sorry, no posts matched your criteria.' ?>
- <?php $page_subtitle = '' ?>
- <?php include( TEMPLATEPATH . '/modules/featured.php' ); ?>
- <!--Body Content Starts -->
- <div class="contentarea">
- <div class="leftportion">
- <div class="about">
- <p><?php _e('Sorry, no posts matched your criteria.', 'roxigo') ?></p>
- <?php endif; ?>
- </div>
- </div>
- <?php get_sidebar(); ?>
- </div>
- <!--Body Content Ends -->
- </div>
- </div>
- <!--Body Portion Ends -->
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment