我們的評(píng)論列表中,偶爾我們希望獲得這個(gè)評(píng)論的序號(hào),如果能夠按照一定的規(guī)律獲得序號(hào),那么就可以為特定的評(píng)論添加一些新信息,例如為評(píng)論添加樓層,或者在第5條評(píng)論后添加一段廣告。但可惜的是,wordpress本身是沒(méi)有提供這個(gè)功能的,我們無(wú)法在mytheme_comment中擁有一個(gè)全局參數(shù)來(lái)獲取每篇文章的評(píng)論序號(hào)。對(duì)于如何構(gòu)建自己的評(píng)論列表如何自己設(shè)計(jì)wordpress評(píng)論列表及評(píng)論框一文說(shuō)的非常干凈,如果你已經(jīng)對(duì)構(gòu)建問(wèn)題非常清楚,應(yīng)該就會(huì)發(fā)現(xiàn)本文所提出來(lái)的問(wèn)題。
我們來(lái)實(shí)現(xiàn)本文要實(shí)現(xiàn)的具體目標(biāo)吧。
序號(hào)機(jī)制 ↑
在wordpress中沒(méi)有提供每篇文章獨(dú)立的序號(hào),而我們不能簡(jiǎn)單的使用comment_ID來(lái)代替這個(gè)序號(hào),這樣根本不能反映出這篇文章中該評(píng)論的位置。因此,我們只能使用php來(lái)實(shí)現(xiàn),我所使用的是$GLOBAL全局參數(shù)設(shè)置方法。
代碼如下:
if(!$GLOBALS['current_comment_order']){
$GLOBALS['current_comment_order'] = 1;
}else{
$GLOBALS['current_comment_order'] ++;
if($GLOBALS['current_comment_order'] > $args['per_page'])$GLOBALS['current_comment_order'] = 0;
}
如上代碼,如果不存在$GLOBALS['current_comment_order']就將它設(shè)置為1,如果已經(jīng)有了,就在原有的基礎(chǔ)上加1,如果到達(dá)最大序號(hào)時(shí),就命令它為0。至于為何要使用$GLOBAL,毋庸置疑,就是因?yàn)閣ordpress沒(méi)有一個(gè)全局參數(shù)來(lái)得到序號(hào)。
如何使用 ↑
和上面提到的那篇文章一樣,你要設(shè)計(jì)自己的評(píng)論列表,一個(gè)是要處理comments.php文件,另外還要在functions.php中增加一個(gè)用來(lái)呈現(xiàn)列表的函數(shù)。這個(gè)函數(shù)將直接被wp_list_comments調(diào)用而無(wú)需增加鉤子。我們姑且將這個(gè)函數(shù)稱(chēng)為mytheme_comment($comment,$arg,$depth),它不僅不需要加入鉤子,而且不需要關(guān)閉列表標(biāo)簽,例如你打算用
來(lái)呈現(xiàn)列表,你不要寫(xiě)
,而是讓
敞開(kāi),因?yàn)槟阋溃憧赡苁乔短罪@示你的評(píng)論,wordpress會(huì)自動(dòng)為你關(guān)閉它。
代碼如下:
function mytheme_comment($comment,$args,$depth){
$comment_id = $comment->comment_ID;
$comment_author = $comment->comment_author;
$comment_parent = $comment->comment_parent;
$comment_post = $comment->comment_post_ID;
?>
<li <?php comment_class($replytocom.$current); ?>>
<div id="comment-<?php comment_ID() ?>">
<div><?php echo get_avatar($comment,$size='40'); ?></div>
<div>
<span><?php echo get_comment_author_link(); ?></span>
<span>#<?php comment_ID(); ?>樓</span>
<?php if($comment_parent)echo '<span>回復(fù)給<a href="#comment-'.$comment_parent.'" rel="nofollow">@'.$comment_parent.'樓</a></span>'; ?>
<span><?php echo get_comment_date('Y/m/d '); ?></span>
<span><?php echo get_comment_time('H:i:s'); ?></span>
<span><a href="<?php echo get_permalink($comment_post); ?>&replytocom=<?php comment_ID(); ?>#respond" rel="nofollow" data-comment-id="<?php comment_ID(); ?>" data-comment-author="<?php echo $comment_author; ?>">回復(fù)</a></span>
<span><?php edit_comment_link('編輯','','') ?></span>
</div>
<div>
<?php comment_text(); ?>
<?php if ($comment->comment_approved == '0')printf('<div>%s</div>','您的見(jiàn)解正在審核中,很快就會(huì)出現(xiàn)在評(píng)論列表~~'); ?>
<div></div>
</div>
<?php
}
至于其中的三個(gè)參數(shù),你只需要具體了解wp_list_comments函數(shù)即可,總之它們都很有用。
將深度和樓層結(jié)合起來(lái) ↑
有這么一種想法,你只需要將嵌套的評(píng)論列表中的第一層作為計(jì)算對(duì)象,每個(gè)嵌套算作一樓,這樣一來(lái),你可以在第一樓后面加上一個(gè)短短的廣告代碼。我們通過(guò)下面的代碼來(lái)實(shí)現(xiàn):
代碼如下:
function mytheme_comment($comment,$args,$depth){
if($depth == 1) : // 如果你需要對(duì)1、2層都計(jì)算的話(huà),可以試試($depth == 1 || $depth == 2)
if(!$GLOBALS['current_comment_order']){
$GLOBALS['current_comment_order'] = 1;
}else{
$GLOBALS['current_comment_order'] ++;
if($GLOBALS['current_comment_order'] > $args['per_page'])$GLOBALS['current_comment_order'] = 0;
}
if($GLOBALS['current_comment_order'] == 1) : // 這里表示第一樓,如果要表示第二樓,把全等號(hào)后面改為2即可
?>你的廣告代碼<?php
endif;
endif;
}
翻頁(yè)的情況怎么考慮 ↑
評(píng)論多了以后翻頁(yè)是在所難免的,幸運(yùn)的是,wordpress已經(jīng)提供了翻頁(yè)所需要的一些材料,當(dāng)前頁(yè)碼,總的頁(yè)碼,每頁(yè)多少條都可以通過(guò)一種途徑獲取:
代碼如下:
function mytheme_comment($comment,$args,$depth){
$current_page = $args['page'];
$totle_page = get_comment_pages_count();
$per_page_num = $args['per_page'];
$totle_num = get_comments_number();
}
翻頁(yè)的時(shí)候,你首先要考慮的是,你打算只在第一頁(yè)或第幾頁(yè)顯示某個(gè)代碼,用下面的判斷
if($current_page == 2) : // 如果當(dāng)前是第二頁(yè)評(píng)論時(shí),一般會(huì)在URL中反映為comment-page-2而如果你要計(jì)算一個(gè)總體的位置,比如說(shuō)你想在第40條顯示某段代碼,你就可以通過(guò)每頁(yè)的條數(shù)和當(dāng)前頁(yè)數(shù)結(jié)合起來(lái)進(jìn)行判斷,例如
代碼如下:
if($per_page_num*($current_page-1) + $GLOBAL['current_comment_order'] == 40) :
當(dāng)然,你可能需要的是$GLOBAL['current_comment_order']為40時(shí),也就是
代碼如下:
if($GLOBAL['current_comment_order'] == 40) :
不過(guò),這個(gè)還真不能實(shí)現(xiàn),因?yàn)楸旧?GLOBAL['current_comment_order']就是記錄當(dāng)前頁(yè)面評(píng)論條數(shù)的序號(hào)的,所以老老實(shí)實(shí)用上一個(gè)判斷吧。
總之,添加樓層我們使用到了$GLOBAL['current_comment_order'],核心代碼是第一段代碼,之后你可以結(jié)合文章開(kāi)頭介紹的那篇文章做出更強(qiáng)大的調(diào)用功能。
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄