2012-02-13 229 views
-1

我在這個WordPress網站的帖子列表中的頂部鏈接不工作(http://hautedishwi.com/category/recipes/)。櫻桃甜甜圈後有一些文字說「獲取食譜」,但它不是一個鏈接。其他人都工作。該代碼,通過螢火蟲,顯示了這個:鏈接不工作

<br&hellip; class="read_more" href="http://hautedishwi.com/2011/06/03/cherry-doughnuts/" <a="">Get the recipe</br&hellip;> 

我也覺得在functions.php中被擰它的代碼是:

function twentyten_auto_excerpt_more($more) { 
    return '&hellip;' . twentyten_continue_reading_link(); 
} 
add_filter('excerpt_more', 'twentyten_auto_excerpt_more'); 

,但我不知道因爲我不是程序員。任何想法如何讓這個鏈接工作?一如既往地感謝您的幫助!

+1

您忘記了一個大於號的符號,因此您最終得到了<?hellip;'而不是'
'。 – Borealid 2012-02-13 19:48:08

+0

@Borealid有答案。檢查你的食譜文本,並確保你關閉了'
'標籤。 – seanbreeden 2012-02-13 20:06:39

回答

1

我想你需要

&gt; &hellip; 

而不是

&hellip; 

因爲它缺少 「>」 換行符的。