unicornmartyr
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to get past posts to show up?Maybe I wasn’t wording myself right, but how do I show the past posts past the 5 on the homepage on the http://nerdityfap.com/page/2/ page?
Forum: Themes and Templates
In reply to: Adding the amount of entries in a column on the homepage?If anyone needs to see the site, here it is: nerdityfap.com
Forum: Themes and Templates
In reply to: Assigning Categories to Page Columns? Category Keys?Awesome! Worked perfectly! Thanks!
Forum: Themes and Templates
In reply to: Assigning Categories to Page Columns? Category Keys?I saw the example of how to exclude a category, but the code doesn’t really resemble mine at all. I tried entering
<?php query_posts($query_string . '&cat=-3,-8'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>before
<div class="post">but all I got was a white error page…
Forum: Themes and Templates
In reply to: Assigning Categories to Page Columns? Category Keys?Great! That Helped! Thanks.
I have another, similar question: The read me file only included how to do that to the news column and the far right side featured column. How do I keep the news posts from appearing in the “Recent Blog Post” column? Is there even a way?
I looked around the many php files and found that the info is in the index file. The section is the following:
<h2>Recent Blog Post</h2>
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; ?><div class=”post” id=”post-<?php the_ID(); ?>”>
<h1>” rel=”bookmark” title=”Permanent Link: <?php the_title(); ?>”><?php the_title(); ?></h1>
<div class=”thumb-main”>
<?php $image = get_post_meta($post->ID, ‘thumbnail’, true); ?>
<?php $link = get_post_meta($post->ID, ‘link’, true); ?>
“><img src=”<?php echo $image; ?>” alt=”” /></div>
<div class=”meta”>
Posted on <?php the_time(‘l, F jS, Y’) ?>
</div>
<?php the_excerpt(); ?>
<span class=”read”>
” >Continue Reading…
</span>It’s not similar to the other two sections and I’m not sure if there’s a way to put the category ID anywhere in that code.