久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

WordPress評論顯示頭像的插件和方法

 loeyliu 2013-01-07

有兩種方法可以實(shí)現(xiàn)WordPress評論顯示頭像方法,,第一種使用代碼,,第二種使用插件實(shí)現(xiàn)。
代碼實(shí)現(xiàn)側(cè)邊欄頭像:
找到側(cè)欄模板進(jìn)行代碼修改
模板路徑:wp-content/themes/當(dāng)前使用模板/sidebar.php

[php]代碼

<ul>
            <?php
                global $wpdb;
                $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID,comment_post_ID, comment_author,comment_author_email,comment_date_gmt, comment_approved, comment_type,comment_author_url, SUBSTRING(comment_content,1,17) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 10";
                $comments = $wpdb->get_results($sql);
                $output = $pre_HTML;
                foreach ($comments as $comment) {
                    $output .= "\n<li class='new'>".get_avatar($comment, 32)."<a rel='external nofollow' target='_blank' href=\"". $comment->comment_author_url ."\" >" . $comment->comment_author . "</a> : <br /> <a target='_blank' href=\"" . get_permalink($comment->ID) . "#comment-" . $comment->comment_ID . "\" title=\"". $comment->comment_author. ":" . $comment->post_title . "\">" . strip_tags($comment->com_excerpt) ."</a></li>";
                }
                $output .= $post_HTML;
                echo $output;
            ?>
        </ul>

其中”comment_author !=’bobsheep’”這段文字實(shí)現(xiàn)側(cè)邊欄不顯示管理員的回復(fù),”$output = convert_smilies($output); “實(shí)現(xiàn)符號向表情的轉(zhuǎn)換,”(‘comment_author_email’), 18″中的18是頭像的大小
使用WP-RecentComments插件
下載鏈接:http://downloads./plugin/wp-recentcomments.zip
使用方法1:激活后直接進(jìn)入小工具調(diào)用即可,配置無需多說.
使用方法2:編輯主題,,在需要顯示最近評論的地方插入這段代碼
<?php wp_recentcomments( ‘a(chǎn)dministrator=false&smilies=true’); ?>
括號中的是配置參數(shù),,更多參數(shù)可以看下面的表格。

 

名稱類型描述默認(rèn)值支持版本
limit整數(shù)顯示的評論數(shù)量51.0 或以上
length整數(shù)每條評論摘要的最大長度501.0 或以上
posttrue/false顯示日志標(biāo)題true1.1 或以上
pingbacktrue/false顯示 pingback 評論true1.1 或以上
trackbacktrue/false顯示 trackback 評論true1.4.3 或以上
trackbacktrue/false顯示 trackback 評論true1.4.3 或以上
avatartrue/false顯示評論者的頭像true1.1 或以上
avatar_size整數(shù)評論者頭像的尺寸321.1 或以上
avatar_positionleft/right評論者頭像的擺放位置left1.1 或以上
avatar_default字符串默認(rèn)頭像文件 1.4.1 或以上
navigatortrue/false顯示分頁導(dǎo)航按鈕true1.3 或以上
administratortrue/false顯示管理員的評論true1.4.2 或以上
smiliestrue/false將表情符號轉(zhuǎn)換成圖片顯示false1.6 或以上

舉個例子:administrator=false實(shí)現(xiàn)不顯示管理員的評論,,smilies=true實(shí)現(xiàn)表情顯示為圖片

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多