Title: simplisticshenanigans's Replies | WordPress.org

---

# simplisticshenanigans

  [  ](https://wordpress.org/support/users/simplisticshenanigans/)

 *   [Profile](https://wordpress.org/support/users/simplisticshenanigans/)
 *   [Topics Started](https://wordpress.org/support/users/simplisticshenanigans/topics/)
 *   [Replies Created](https://wordpress.org/support/users/simplisticshenanigans/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/simplisticshenanigans/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/simplisticshenanigans/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/simplisticshenanigans/engagements/)
 *   [Favorites](https://wordpress.org/support/users/simplisticshenanigans/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [New Posts Not Showing Up](https://wordpress.org/support/topic/new-posts-not-showing-up/)
 *  Thread Starter [simplisticshenanigans](https://wordpress.org/support/users/simplisticshenanigans/)
 * (@simplisticshenanigans)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/new-posts-not-showing-up/#post-869902)
 * 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.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [New Posts Not Showing Up](https://wordpress.org/support/topic/new-posts-not-showing-up/)
 *  Thread Starter [simplisticshenanigans](https://wordpress.org/support/users/simplisticshenanigans/)
 * (@simplisticshenanigans)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/new-posts-not-showing-up/#post-869896)
 * 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(); ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [New Posts Not Showing Up](https://wordpress.org/support/topic/new-posts-not-showing-up/)
 *  Thread Starter [simplisticshenanigans](https://wordpress.org/support/users/simplisticshenanigans/)
 * (@simplisticshenanigans)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/new-posts-not-showing-up/#post-869894)
 * 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?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [New Posts Not Showing Up](https://wordpress.org/support/topic/new-posts-not-showing-up/)
 *  Thread Starter [simplisticshenanigans](https://wordpress.org/support/users/simplisticshenanigans/)
 * (@simplisticshenanigans)
 * [17 years, 7 months ago](https://wordpress.org/support/topic/new-posts-not-showing-up/#post-869879)
 * 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!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [All Images Not Showing Up](https://wordpress.org/support/topic/all-images-not-showing-up/)
 *  Thread Starter [simplisticshenanigans](https://wordpress.org/support/users/simplisticshenanigans/)
 * (@simplisticshenanigans)
 * [17 years, 8 months ago](https://wordpress.org/support/topic/all-images-not-showing-up/#post-853171)
 * Sorry for lashing out in previos posts… frustration is getting the best of me.
 * It seems that the main image in my only post is not showing up in all browsers
   for some reason.
    It is appearing in FF 3.0.0. but that is about it from what
   I can tell, everywhere else it is showing up as a broken link or with the ALT
   tags. When I click on the picture in an oler version of FireFox it is coming 
   up with the following message:
 * **_“The image “http://simplisticshenanigans.com/wp-content/uploads/2008/09/comingsoon.
   jpg” cannot be displayed, because it contains errors.”_**
 * I am unsure where to turn with this problem. I have searched the forums a bit,
   and looked at troubleshooting but the problem continues to get the best of me.
 * Any help is welcome!

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