2013-01-09 71 views
-1

我試圖把我的comments.php表單上的回覆鏈接,它不起作用。它只刷新我的頁面!回覆鏈接WordPress不起作用

我使用的代碼如下:

<div class= replay_text"> 
<font size="-1"><strong><a href="<?php comment_reply_link(array ('reply_text' => 'Replay alt="Reply">')); ?>">Reply</a></strong></font></div> 

有人幫幫我嗎?

回答

0

我不太瞭解php,但我認爲問題在於你忘記打開"而你在php上表示reply_text而不是replay_text。這是正確的:

<div class= "reply_text"> 
<font size="-1"><strong><a href="<?php comment_reply_link(array ('reply_text' => 'Replay alt="Reply">')); ?>">Reply</a></strong></font></div> 
+0

糾正語言錯誤有notihing做worpdress內部功能和修復問題:( –

+2

對不起,我想這可能是唯一的語言錯誤......我不希望他知道它只是語言而堅持搜索錯誤 –

+0

他只是以某種方式使用某個函數,而不應該使用該函數。我只是沒有得到,他在做什麼。 –

0

http://core.trac.wordpress.org/browser/tags/3.5/wp-includes/comment-template.php#L1371

檢查如何comment_reply_link應該被使用。用它作爲錨點源頭並不是最好的想法,而且我看到了更糟糕的情況,但是你不會得到任何東西。

而是在錨點目標這樣使用它,其他HTML元素之間:

<?php comment_reply_link(array_merge($args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?>