• Resolved uknak

    (@uknak)


    Hi
    I like thi theme. But I have problem. Is it possible for me to display posts in: Archives, Category, Monthly Archives like Home Page, in box?
    I would like to display posts in boxes like on Front Page(I set 9 posts)
    My web: my web

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author webriti

    (@priyanshumittal)

    Hi

    Yah it can be done but require some custom coding.

    Create a child theme and copy paste the index.php file in it , now open this file in any of the preferred editor and remove all the code snippet from the (just for your reference )
    https://themes.trac.www.ads-software.com/browser/quality/1.0.6.6/index.php#L22
    to
    https://themes.trac.www.ads-software.com/browser/quality/1.0.6.6/index.php#L77

    and replace it with the loop of index-blog.php ie

    <div class="row">
    	<?php	$args = array( 'post_type' => 'post','posts_per_page' => 3,'ignore_sticky_posts' => 1);
    			query_posts( $args );
    			while(have_posts()):the_post();
    			{	?>
    			<div class="col-md-4 col-sm-6">
    				<div class="qua-blog-area">
    				<?php $defalt_arg =array('class' => "img-responsive"); ?>
    				<?php if(has_post_thumbnail()): ?>
    					<?php the_post_thumbnail('quality_blog_img', $defalt_arg); ?>
    				<?php endif; ?>
    				<div class="qua-blog-info">
    						<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    						<div class="qua-blog-post-detail">
    							<span><?php _e('Posted By Admin','quality');?>
    							<?php if(get_the_tag_list() != '') { ?>
    							</span><i class="post-seperator"></i>
    							<div class="qua-tags">
    								<?php the_tags('',' , ', '<br />'); ?>
    							</div>
    							<?php } ?>
    						</div>
    						<?php the_excerpt(); ?>
    
    						<div class="qua-blog-date-cm">
    							<span class="left"><?php echo get_the_date('M j,Y'); ?></span><span class="right"><a href="#"><?php comments_number( 'No Comments', 'one comments', '% comments' ); ?></a></span>
    						</div>
    				</div>
    				</div>
    			</div>
    			<?php  }
    			endwhile; ?>
    	</div>

    and finally change post per page 3 to 9 in the above code snippet

    Hope I made myself clear, for any confusions ping me. But

    PS: How you rate this theme

    Thanks
    Priyanshu

    Hi

    Did resolved your issue ?

    Thank’s

    Sunil

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post like Home Page [Tag Archives, Category, Monthly Archives]’ is closed to new replies.