2015-05-20 206 views
-1

在我的所有博客文章的底部我得到這樣的評論:解析錯誤:語法錯誤行39

評論

解析錯誤:語法錯誤,意外的文件結束在/ home/nildcan /的public_html /可溼性粉劑內容/主題/記性/上線的comments.php 39

(可在現場這裏查看:http://www.nildcanada.org/courses/#comments

我相信這是最後一行,這是問題,但我不知道什麼是錯誤。這裏是行39/40:

 <div class="commenttext"> <?php if(function_exists('get_avatar')) { echo get_avatar($comment, '56', $default = '<http://www.nildcanada.org/wp-content/themes/memorability/images/davatar.jpg>'); } ?> 
     <?php comment_text() ?> 

任何人都可以幫忙嗎?

回答

0

您直接在函數中定義一個變量,這是行不通的。試試這個:

<div class="commenttext"> 

<?php 
    if(function_exists('get_avatar')) { 
     $default = 'http://www.nildcanada.org/wp-content/themes/memorability/images/davatar.jpg'; 
     echo get_avatar($comment, '56', $default); 
    } 
?> 

<?php comment_text(); ?>