This is the script. I have no background in programming but I'm trying to revamp the website on Wordpress. It says I have a T_CONSTANT_ENCAPSED_STRING error. Please help. I believe its on the the_time line.
/* BLOG SET UP */
$loopty_loop = new my_loops('showposts=5');
class my_loops extends thesis_custom_loop {
function category() {
if (is_category('blog')) {
while (have_posts()) {
the_post(); ?>
<div class="post_box">
<div class="headline_area">
<?php $post_image = thesis_post_image_info();
echo $post_image['output']; ?>
<h2 class="entry-title" rel="bookmark" title="<?php the_title();?>">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h2>
<div class="op-meta">By <?php the_author_posts_link(); ?>
</div>
<div class="format_text entry-content">
<?php the_content('Read the full post'); ?> | <?php the_time (m'jY'); ?></div>
</div>
<div class="op-tags">
<p><a class="comments" href="<?php comments_link(); ?>"><?php comments_number('0 Comments', '1 Comment', '% Comments'); ?></a> | <?php the_tags('Tags: ', ', ', '<br />'); ?></p>
</div>
</div>
<?php }
}
else
thesis_loop::category();