I’ve been playing with adding the graphics in place of the date, and keep getting errors. I’m not sure what I’m doing incorrectly. Here is the error I’m receiving:
Parse error: parse error, unexpected T_STRING in /home/stefan/public_html/wp-content/themes/kubrick/index.php on line 11
And here is the snippet I’m inserting:
<h2 id="post-<?php the_ID(); ?>"> <img src="https://www.vondollens.us/images/calendar/<?PHP echo the_time(a€?m_da€?); ?>.pnga€? alt=a€?<?PHP the_time(a€?F jS, Ya€?); ?>a€? width=a€?96pxa€? height=a€?96pxa€? />
" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
<small><?php the_weekday(); ?>, <?php the_time('F jS, Y','H:i') ?> @ <?php the_time() ?>
<!-- by <?php the_author() ?> --></small>
That looks pretty ugly after I pasted it, hopefully it’s readable.
Any direction is appreciated ??