@riverbirch – your site looks like a parked domain so can’t help much there.
@angelscott – when I clicked on the latest post it came up with a 404 and the following url: https://www.greenacresandham.com/http:/www.greenacresandham.com/ in the add bar. I would suggest checking your permalinks and the index.php code of your theme – the code should look something like:
<div class="post" id="post-<?php the_ID(); ?>">
<div class="entrytop"><div class="entry">
<h2><span class="inpost-date"><?php the_time('F jS, Y') ?></span><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div></div>
<div class="post-content">
<?php the_content('Read the rest of this entry »'); ?>
</div>
The code that returns the single post url is:
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
Yours reads:
<div class="post-headline">
<h2> <a href="https://www.greenacresandham.com/http:/www.greenacresandham.com/" rel="bookmark" title="Permanent Link to August Feature: Slow Money Alliance & Principles">August Feature: Slow Money Alliance & Principles </a> </h2>
</div>
– Which is incorrect.