• OK.

    http://www.simplisticshenanigans.com
    I am currently using ComicPress 3c theme

    I was tinkering in my index file yesterday to fix my missing footer and now when I publish a new post it does not show up in the blog.
    I have tried clearing the cache and disabling my plugins but am still receiving nothing on posting.

    My original problem was with my footer and right sidebar not showing up properly. So what I did was load the ComicPress theme, copy the bottom of the code and then paste it into my theme.
    The problem was fixed.
    Now today when I try to post I am getting no new posts showing up on my page.

    Can Anyone help?
    Here is the code from my current index:

    <?php get_header(); global $blog_postcount, $blogcat; $first_comic = get_first_comic(); ?>
    
    <?php $wp_query->in_the_loop = true; $comicFrontpage = new WP_Query(); $comicFrontpage->query('showposts=1&cat='.$comiccat);
    while ($comicFrontpage->have_posts()) : $comicFrontpage->the_post(); ?>
       <div id="comic">
          <img src="<?php comic_display(); ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
       </div>
    <?php endwhile; ?>
    
    <div id="page">
    
       <?php include(TEMPLATEPATH . '/sidebar-left.php'); ?>
    
       <div id="column">
    
          <?php while ($comicFrontpage->have_posts()) : $comicFrontpage->the_post(); ?>
             <div class="post-frontpage">
                <div class="comicdate">
                   <div class="nav">
                      <a href="<?php echo $first_comic; ?>"><span style="letter-spacing:-4px;padding-right:4px;">I◄◄</span> First</a> | <?php global $wp_query; $wp_query->is_single = true; previous_post_link('%link', '◄ Previous', TRUE); $wp_query->is_single = false; ?>
                   </div>
                   <?php the_time('l — F jS, Y') ?>
                </div>
                <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
                <div class="entry">
                   <?php the_content('Read the rest of this entry &raquo;'); ?>
                </div>
                <div class="postmeta">
                   <?php the_tags('Tags: ', ', ', ' | '); edit_post_link('Edit', '', ' | ');
                   if ('open' == $post->comment_status) { comments_popup_link('<span class="postmeta-comments">Comment </span><span class="balloon">)</span>', '<span class="postmeta-comments">1 Comment </span><span class="balloon">)</span>', '<span class="postmeta-comments">% Comments </span><span class="balloon">^</span>'); } ?>
                </div>
             </div>
          <?php endwhile; ?>
    
          <div id="blogheader">
          </div>
    
          <?php $temp = $wp_query; $wp_query= null;   $wp_query = new WP_Query(); $wp_query->query('showposts='.$blog_postcount.'&cat='.$blogcat.'&paged='.$paged);
          while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
             <div class="post" id="post-<?php the_ID(); ?>">
                <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
                <div class="postdate"><?php the_time('F jS, Y') ?></div>
                <div class="entry"><?php the_content('Read the rest of this entry &raquo;'); ?></div>
                <div class="postmeta">
                   <?php the_tags('Tags: ', ', ', ' | '); edit_post_link('Edit', '', ' | ');
                   if ('open' == $post->comment_status) { comments_popup_link('<span class="postmeta-comments">Comment </span><span class="balloon">)</span>', '<span class="postmeta-comments">1 Comment </span><span class="balloon">)</span>', '<span class="postmeta-comments">% Comments </span><span class="balloon">^</span>'); } ?>
                </div>
             </div>
          <?php endwhile; ?>
          <div class="pagenav">
             <div class="pagenav-right"><?php previous_posts_link('Newer Entries ▲') ?></div>
             <div class="pagenav-left"><?php next_posts_link('▼ Previous Entries') ?></div>
             <div class="clear"></div>
          </div>
          <?php if (is_paged()) { ?>
             <style>
                #comic{display:none;}
                .post-frontpage{display:none;}
             </style>
          <?php } ?>
          <?php $wp_query = null; $wp_query = $temp; ?>
    
       </div>
    
       <?php get_sidebar('right'); ?>
    
       <div class="clear"></div>
    
    </div>
    
    <?php get_footer(); ?>
Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter simplisticshenanigans

    (@simplisticshenanigans)

    Anyone have any idea on this?

    I have tried working it out – but keep failing as nothing new is showing up on the sight.

    The new post ARE there thought. If you look at the left-sdiebar on my site you will see an archeive… the last post is entitled TEST which was a test post I made. But s you can see it is not showing up on the site…

    help!

    Did you try reinstalling the original theme files? Sounds like whatever you did to the footer is what messed up the theme. I’d put it back the way it was before I started messing with anything else and see if that fixes it. If it does, then you’ll know whatever you did to the footer was wrong. If it doesn’t, then start deactivating plugins and revert to the default theme and see if the posts show up like they’re supposed to.

    Thread Starter simplisticshenanigans

    (@simplisticshenanigans)

    Thanks For The Reply!!!!

    OK so I reinstalled the theme – but now all my posts are gone!!
    How do I get my already published items to show in my new theme?

    Thread Starter simplisticshenanigans

    (@simplisticshenanigans)

    AHHHHHHH!!!!

    OK Blog no appearing – comic now not appearing.

    NEW CODE BELOW:

    <?php get_header(); global $blog_postcount, $blogcat; $first_comic = get_first_comic(); ?>
    
    <?php $wp_query->in_the_loop = true; $comicFrontpage = new WP_Query(); $comicFrontpage->query('showposts=1&cat='.$comiccat);
    while ($comicFrontpage->have_posts()) : $comicFrontpage->the_post(); ?>
    	<div id="comic">
    		<img src="<?php comic_display(); ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
    	</div>
    <?php endwhile; ?>
    
    <div id="page">
    
    	<?php include(TEMPLATEPATH . '/sidebar-left.php'); ?>
    
    	<div id="column">
    
    		<?php while ($comicFrontpage->have_posts()) : $comicFrontpage->the_post(); ?>
    			<div class="post-frontpage">
    				<div class="comicdate">
    					<div class="nav">
    						<a href="<?php echo $first_comic; ?>"><span style="letter-spacing:-4px;padding-right:4px;">I◄◄</span> First</a> | <?php global $wp_query; $wp_query->is_single = true; previous_post_link('%link', '◄ Previous', TRUE); $wp_query->is_single = false; ?>
    					</div>
    					<?php the_time('l — F jS, Y') ?>
    				</div>
    				<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    				<div class="entry">
    					<?php the_content('Read the rest of this entry &raquo;'); ?>
    				</div>
    				<div class="postmeta">
    					<?php the_tags('Tags: ', ', ', ' | '); edit_post_link('Edit', '', ' | ');
    					if ('open' == $post->comment_status) { comments_popup_link('<span class="postmeta-comments">Comment </span><span class="balloon">)</span>', '<span class="postmeta-comments">1 Comment </span><span class="balloon">)</span>', '<span class="postmeta-comments">% Comments </span><span class="balloon">^</span>'); } ?>
    				</div>
    			</div>
    		<?php endwhile; ?>
    
    		<div id="blogheader">
    		</div>
    
    		<?php $temp = $wp_query; $wp_query= null;	$wp_query = new WP_Query(); $wp_query->query('showposts='.$blog_postcount.'&cat='.$blogcat.'&paged='.$paged);
    		while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
    			<div class="post" id="post-<?php the_ID(); ?>">
    				<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
    				<div class="postdate"><?php the_time('F jS, Y') ?></div>
    				<div class="entry"><?php the_content('Read the rest of this entry &raquo;'); ?></div>
    				<div class="postmeta">
    					<?php the_tags('Tags: ', ', ', ' | '); edit_post_link('Edit', '', ' | ');
    					if ('open' == $post->comment_status) { comments_popup_link('<span class="postmeta-comments">Comment </span><span class="balloon">)</span>', '<span class="postmeta-comments">1 Comment </span><span class="balloon">)</span>', '<span class="postmeta-comments">% Comments </span><span class="balloon">^</span>'); } ?>
    				</div>
    			</div>
    		<?php endwhile; ?>
    		<div class="pagenav">
    			<div class="pagenav-right"><?php previous_posts_link('Newer Entries ▲') ?></div>
    			<div class="pagenav-left"><?php next_posts_link('▼ Previous Entries') ?></div>
    			<div class="clear"></div>
    		</div>
    		<?php if (is_paged()) { ?>
    			<style>
    				#comic{display:none;}
    				.post-frontpage{display:none;}
    			</style>
    		<?php } ?>
    		<?php $wp_query = null; $wp_query = $temp; ?>
    
    	</div>
    
    	<?php include(TEMPLATEPATH . '/sidebar-right.php'); ?>
    
    	<div class="clear"></div>
    
    </div>
    
    <?php get_footer(); ?>

    Thread Starter simplisticshenanigans

    (@simplisticshenanigans)

    Well I seemed to have somewhat solved my problem for the short term.
    I only have two categories: one for blog and one for comic.

    In my ComicPress tab It asks me to define two categories.

    So my new problem is that I had a third category and any posts that were labelled with that category would not show up on the main blog.

    ALSO if I write a new post and leave it as uncategorized then it will not show up on the blog either.
    I figure I should be able to write a post and publish is and have it appear on my blog – regardless of what category it is in.

    I’m jhaving this problem too, where if blogs were uncategorized, they would not show up on the front page – have you found a solution yet? cab you have the default setting be for a specific category?

    focusedawareness

    (@focusedawareness)

    I’m having the same problem, whether or not the post is categorized, anything new will not show up. if i take the new posts down all the old ones still show up. i’ve tried reinstalling all plugins and themes, tries posting all kinds of permutations with no result. whats going on?

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘New Posts Not Showing Up’ is closed to new replies.