mfrasher
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Urgent help please- no blog post are showingHere is the plug-in that I removed to fix this.
Name: Tweet This
Verson: 1.3.9
Description: Adds a “Tweet This Post” link to every post and page. Shortens URLs in advance through Th8.us, eating up only 19 of 140 characters. Customize under Settings > Tweet This. By Richard X. Thripp.
Forum: Fixing WordPress
In reply to: new posts wont show upI’m having this same problem, and I’m seeing other post come in with the same issue.
There seems to be an underlying theme…not sure what it is.
Forum: Fixing WordPress
In reply to: Urgent help please- no blog post are showingHere’s the code for the index.php
<?php get_header(); ?> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="postwrap"> <div class="post" id="post-<?php the_ID(); ?>"> <div class="posthead"> <h1><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"> <?php the_title(); ?> </a></h1> <div class="authorbox"> <ul> <li class="postauthor">Written by <?php the_author() ?> <?php edit_post_link('Edit'); ?> </li> <li class="postdate">Posted <?php the_date(); ?> at <?php the_time(); ?></li> </ul> </div> </div> <div style="clear:left;"></div> <div class="postcontent"> <?php the_content('Read the rest of this entry »'); ?> </div> <div class="postinfo"> <div class="postcomments"> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> </div> <div class="postcat">Filed under: <?php the_category(', ') ?> </div> </div> </div> <!--<?php trackback_rdf(); ?>--> <div class="clearer"></div></div> <?php endwhile; ?> <?php else : ?> <div class="postwrap"> <h2> <?php _e('Not Found'); ?> </h2> <p> <?php _e('Sorry, no posts matched your criteria.'); ?> </p> </div> <?php endif; ?> <div class="pagenavi"><?php posts_nav_link(' — ', __('« Go back'), __('View more »')); ?></div> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Urgent help please- no blog post are showingI thought that too, but its not.
If I access the post via direct URL entry, each and every post is doing the same thing.
Even the new post today after noticing the problem is doing it.
Viewing 4 replies - 1 through 4 (of 4 total)