- This topic has 1 reply, 1 voice, and was last updated 8 years, 5 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Support › Themes Forum › Question with Photolite Theme :)
I have a couple of other questions…
What I want on my home page:
I would like it so that my home page ends below the row of 4 pictures (the copyright at the bottom is fine) and don’t want any recent posts or anything showing up below that. To get to blog/page content, I want people to click on the menu links at the top, the READ MORE buttons from the header sliders, or the picture links, and I don’t want the results of any of the clicks to show up on the main page.
From there, the normal blog sidebar would be visible on the pages and posts. Essentially, I want to have this hierarchy:
Home Page with 6 links
Page 1
Page 2 –> links to sub pages
Page 3 –> landing page for a blog
Page 4 –> landing page for a blog
Page 5
Page 6
QUESTION ONE: Would you be able to help me figure out how to disable anything from showing up under my header image and four smaller images?
QUESTION TWO: Pages also contain the same problems that the home page has–extra junk below my text that I don’t want to see. How do I remove that?
I appreciate your assistance very much!! 🙂
I figured out how to get the recent post information from showing up by opening the CSS for the footer and removing this chunk:
I cut this chunk out of the code:
<?php if(!dynamic_sidebar(‘sidebar-7’)) : ?>
<div class=”footer-col”><h2>Recent Posts</h2>
<?php $foot_query = new WP_Query(‘post_type=post&showposts=2’); ?>
<?php while($foot_query->have_posts() ) : $foot_query->the_post(); ?>
<div class=”foot-post”>
<?php if( has_post_thumbnail() ) { ?>
<div class=”foot-post-thumb”>“><?php the_post_thumbnail(); ?>
</div><!– foot-post-thumb –>
<?php } ?>
<div class=”foot-post-content”>“><?php the_title(); ?>
<?php echo content(10); ?>
</div><!– foot-post-content –><div class=”clear”></div>
</div><!– foot-post –>
<?php endwhile; ?>
</div><!– footer-col –>
<?php endif; ?>