Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thank you Zflat. That was incredibly helpful.

    There are a bunch of wordpress plugins that put captcha on the comments page. Just search the plugins page for captcha or go into your plugins page in WordPress and choose find new plugins and search captcha.

    I am having this same problem and it is still not working. I tried changing to default permalinks and back and it didn’t help. They were working fine a few hours ago. Then I deleted some and recreated them. Now the new ones aren’t working. They look identical to the ones that existed before.

    I am having this same problem. Here’s additional information: I first modified the name of some existing categories and those worked fine, displayed as expected. Then I delete some to consolidate items into fewer categories and now only two categores appear. I will not be trying it with any other categories in case it fails.

    Thread Starter maybedog

    (@maybedog)

    Sorry, I only work on the site once in a while (I’m a contractor). It’s not in one of the pages, either. I know where the footer is but I can’t figure out where the main body content is coming from. Rather, I can find the index.php page which is pulling in the dynamic photos but I can’t find the text. So below is the text of the index page. I’m sure the PHP is referencing some includes that have the text but I can’t find them in the same directory. It must be interacting with WordPress to pull them in.

    <?php get_header(); ?>
        <div id="content">
        	<div id="left">
            	<?php include('sidebar-page.php'); ?>
            </div>
            <div id="right">
            	<?php $oImg = array("pic-home-1.jpg","pic-home-2.jpg","pic-home-3.jpg","pic-home-5.jpg","pic-home-6.jpg","pic-home-7.jpg","pic-home-8.jpg","pic-home-9.jpg","pic-home-10.jpg","pic-home-11.jpg","pic-home-12.jpg","pic-home-13.jpg","pic-home-14.jpg","pic-home-15.jpg","pic-home-16.jpg");
    	$num = count($oImg);
    	$ran = rand(1,$num)-1; ?>
            	<img id="hmRotator" src="<?php bloginfo('template_url');?>/images/<?php echo $oImg[$ran]; ?>" alt="Test" /><br />
                <?php if(is_home()) { query_posts("cat=1&showposts=1"); } ?>
            	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    	<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
    	<h1><?php the_title(); ?></h1>
    	<div class="entry">
    	<?php the_content('Read the rest of this entry &raquo;'); ?>
    </div>
    </div>
    <?php endwhile; else : ?>
                <h2 class="center">Not Found</h2>
                <p class="center">Sorry, but you are looking for something that isn't here.</p>
                <?php get_search_form(); ?>
    	<?php endif; ?>
            </div>
            <span class="clear"></span>
            <div id="footer">
            	<?php get_footer(); ?>
            </div>
        </div>
    </div>
    </div>
    </body>
    </html>

    Suggestions?
    Thanks!

    Thread Starter maybedog

    (@maybedog)

    Ok, how do I do that? I currently have
    ‘ Last updated on: <?php the_modified_date(); ?>

    which shows the last time that page was updated. How do I grab the date of the most recent post?

    Thanks!

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