PHP error T
I am getting this error : Parse error: syntax error, unexpected T_OBJECT_OPERATOR in wp-content/themes/phil/page.php on line 104
This is my code:
<?php
$todaysDate = date ('M d');
$event_query = new WP_Query('showposts=5&category_name=events&meta_key=Date&meta_compare=>=&meta_value='.$todaysDate.'&orderby=meta_value=order=ASC');
?>
<?php
if (event_query->have_post()) : while ($event_query->have_post()) : $event_query->the_post();
$eventMeta = get_post_meta($post->ID, 'Date', true);
$eventDate = strtotime($eventMeta);
$displayDate = date ('M d', $eventDate);
?>
<li>
<span class="date"><?php echo $displayDate ; ?></span>
<span><a href="<?php the_permalink();?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></span></li>
<?php endwhile; else:?>
<li>No Upcoming events</li>
<?php endif;?>
I am pretty new to this PHP stuff and WOrdpress so let me know what am I doing wrong. or paste the code to replace.
I'm going to go out on a limb and guess that this line :
if (event_query->have_post()) : while ($event_query->have_post()) : $event_query->the_post();
Should be this:
if ($event_query->have_post()) : while ($event_query->have_post()) : $event_query->the_post();
You were missing the $ in your variable name.
您在中缺少$
infront of event_query
if (event_query->have_post())
链接地址: http://www.djcxy.com/p/69438.html
上一篇: 解析错误:语法错误,在functions.php中出现意外的'<'
下一篇: PHP错误T