• Hello,

    I’m running wordpress 4.0 website based on two themes: one for the whole site and the second one for the blog page. It works excellent, just as I want it to.

    Now I would like to add the third and last theme. It would be connected with one blog category which I excluded from the blog page (id 11) – my plan is to create a page of posts consists on this single category and combine it with the third theme.

    I’m using a multiple themes jonradio plugin to manage my themes.

    For the third theme I chose Fancier, it looks perfect for me.
    For creating page of posts I’m using codex guide. I did it a few times and it went well, but with Fancier theme it’s not easy for me, so I’d like to ask some nice person for a bit of help ??

    I cannot manage with how should I mix the page of post example code with fancier’s page code. I would like to base it on index.php template, I want my page of posts to like the same as the main site of fancier theme. I did it the same way, basing my blog page with surfurama theme and it works brilliant. Now I need to do it with this one, last page.

    Code of my chosen theme’s index.php file looks like that:

    <?php get_header(); ?>
    
    <div id="content">
    <div id="contentinner">
    
    <div id="post-entry">
    <?php 
    
    $current_page = (get_query_var('paged')) ? get_query_var('paged') : 1;
    $args = array(
     'paged' => $current_page
    );
    $query2 = new WP_Query($args);?>
    <?php while($query2->have_posts()){ $query2->the_post(); ?>
    <div  id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     <div class="post-meta">
    <?php if (!is_sticky()) { ?>
    <div class="thumb"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php 
    
    the_post_thumbnail(array(225,9999), array('class' => 'aligncenter')); ?></a></div><div 
    
    class="cat"><?php the_category(', ') ?></div><div class="tim"><?php the_time('M j')?></div>
    <?php } else { ?>
    <div class="thumb"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php 
    
    the_post_thumbnail(array(464,9999), array('class' => 'aligncenter')); ?></a></div><div 
    
    class="cat"><?php the_category(', ') ?></div><div class="tim"><?php the_time('M j')?></div>
    <?php } ?>
    <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php 
    
    fancier_short_feat_title(); ?></a></h2>
    <div class="post-author">
    						Posted by <?php the_author() ?></div>
    <hr>
    
    <div class="post-content"><a href="<?php the_permalink(); ?>"><?php fancier_the_post_excerpt
    
    ($excerpt_length=25); ?></a></div>
    
    <!--<div class="post-date"><?php the_time('j F G:i') ?></div>-->
    <!-- <a class="readmore" href="<?php the_permalink() ?>#more" class="more-link"><?php _e('Read more', 
    
    'columnist'); ?></a>-->
    </div>
    </div><!-- POST META END -->
    
    <?php }  
    
    wp_reset_postdata();  ?>
    	<div class="clearfix"></div>
    				<div class="posts-navigation">
    					<div class="posts-navigation-next"><?php next_posts_link
    
    (esc_html__('Previous','fancier')) ?></div>
    					<div class="posts-navigation-prev"><?php previous_posts_link
    
    (esc_html__('Next', 'fancier')) ?></div>
    					<div class="clearfix"></div>
    				</div>
    
    </div><!-- POST ENTRY END -->
    
    <?php get_footer(); ?>

    Could anyone please tell me how to make it right?

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can just use Posts in Page.

    Thread Starter kicia

    (@kicia)

    Thank you for answering me.
    I think it’s not what I’m searching for – I need to adapt the chosen theme to my page of posts, which is, in fact, ready (if talking about its functionality), I “only” need to adapt the page layout.

    My question is how to mix the post of pages example from codex with my theme, which I quoted above.

    Thread Starter kicia

    (@kicia)

    Maybe someone could help me?
    Please!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to create a page of posts?’ is closed to new replies.