the template inserts the word "Post" to top of page


Author Message
antonio

Posted: 4/22/2014
Quote message 

the template inserts the word "Post" to top of page ... http://www.autoescuelamanuelrojas.com
 
servidj

Posted: 4/22/2014
Quote message 

I built the site using Artisteer 4.1. It turns out that Artisteer generates a line of code in wrappers.php that looks like this:

<article<?php echo $id; ?> class="art-post art-article <?php echo $class; ?>">
<h2 class="art-postheader">Post
</h2>

I changed it to this:

<article<?php echo $id; ?> class="art-post art-article <?php echo $class; ?>">
<h2 class="art-postheader"><?php echo $title; ?>
</h2>

Problem solved!