午夜国产狂喷潮在线观看|国产AⅤ精品一区二区久久|中文字幕AV中文字幕|国产看片高清在线

    wordpress實(shí)現(xiàn)相關(guān)文章功能代碼方法
    來(lái)源:易賢網(wǎng) 閱讀:1136 次 日期:2016-07-02 08:50:03
    溫馨提示:易賢網(wǎng)小編為您整理了“wordpress實(shí)現(xiàn)相關(guān)文章功能代碼方法”,方便廣大網(wǎng)友查閱!

    wordpress有很多實(shí)現(xiàn)相關(guān)文章功能的插件,插件的優(yōu)點(diǎn)是配置簡(jiǎn)單,但是可能會(huì)對(duì)網(wǎng)站的速度造成一些小的影響,所以很多人還是比較喜歡用代碼實(shí)現(xiàn)需要的功能,但是話又說(shuō)回來(lái)了,代碼實(shí)現(xiàn)也有缺點(diǎn),就是配置復(fù)雜,不懂代碼的人完全摸不著頭腦或者只能照搬別人的代碼,還不如用插件。

    這里我整理編寫了幾種用代碼實(shí)現(xiàn)相關(guān)文章的方法,這其中會(huì)詳細(xì)標(biāo)明各部分代碼的作用,以及如何自定義你想要的功能,希望對(duì)大家有所幫助,有什么問(wèn)題可以給本文發(fā)表評(píng)論,我會(huì)及時(shí)給你回復(fù)。開始之前,說(shuō)明一點(diǎn),以下所有方法輸出的html代碼格式都是以下形式,你可以根據(jù)需要進(jìn)行修改:

    <ul id=xxx>

    <li>* <a title=文章標(biāo)題1 rel=bookmark href=文章鏈接1>文章標(biāo)題1</a></li>

    <li>* <a title=文章標(biāo)題2 rel=bookmark href=文章鏈接2>文章標(biāo)題2</a></li>

    ......

    </ul>

    方法一:標(biāo)簽相關(guān)

    首先獲取文章的所有標(biāo)簽,接著獲取這些標(biāo)簽下的 n 篇文章,那么這 n 篇文章就是與該文章相關(guān)的文章了?,F(xiàn)在可以見到的wordpress相關(guān)文章插件都是使用的這個(gè)方法。下面是實(shí)現(xiàn)的代碼:

    <ul id=tags_related>

    <?php

    $post_tags = wp_get_post_tags($post->id);

    if ($post_tags) {

    foreach ($post_tags as $tag) 

    {

    // 獲取標(biāo)簽列表

    $tag_list[] .= $tag->term_id;

    }

    // 隨機(jī)獲取標(biāo)簽列表中的一個(gè)標(biāo)簽

    $post_tag = $tag_list[ mt_rand(0, count($tag_list) - 1) ];

    // 該方法使用 query_posts() 函數(shù)來(lái)調(diào)用相關(guān)文章,以下是參數(shù)列表

    $args = array(

    'tag__in' => array($post_tag),

    'category__not_in' => array(null), // 不包括的分類id

    'post__not_in' => array($post->id),

    'showposts' => 6, // 顯示相關(guān)文章數(shù)量

    'caller_get_posts' => 1

    );

    query_posts($args);

    if (have_posts()) : 

    while (have_posts()) : the_post(); update_post_caches($posts); ?>

    <li>* <a href=<?php the_permalink(); ?> rel=bookmark title=<?php the_title_attribute(); ?>><?php the_title(); ?></a></li>

    <?php endwhile; else : ?>

    <li>* 暫無(wú)相關(guān)文章</li>

    <?php endif; wp_reset_query(); } ?>

    </ul>

    使用說(shuō)明:”不包括的分類id” 指的是相關(guān)文章不顯示該分類下的文章,將同行的 null 改成文章分類的id即可,多個(gè)id就用半角逗號(hào)隔開。因?yàn)檫@里限制只顯示6篇相關(guān)文章,所以不管給 query_posts() 的參數(shù) tag__in 賦多少個(gè)值,都是只顯示一個(gè)標(biāo)簽下的 6 篇文章,除非第一個(gè)標(biāo)簽有1篇,第二個(gè)標(biāo)簽有2篇,第三個(gè)有3篇。。。。。。所以如果這篇文章有多個(gè)標(biāo)簽,那么我們采取的做法是隨機(jī)獲取一個(gè)標(biāo)簽的id,賦值給 tag__in 這個(gè)參數(shù),獲取該標(biāo)簽下的6篇文章。

    方法二:分類相關(guān)

    本方法是通過(guò)獲取該文章的分類id,然后獲取該分類下的文章,來(lái)達(dá)到獲取相關(guān)文章的目的。

    <ul id=cat_related>

    <?php

    $cats = wp_get_post_categories($post->id);

    if ($cats) {

    $cat = get_category( $cats[0] );

    $first_cat = $cat->cat_id;

    $args = array(

    'category__in' => array($first_cat),

    'post__not_in' => array($post->id),

    'showposts' => 6,

    'caller_get_posts' => 1);

    query_posts($args);

    if (have_posts()) : 

    while (have_posts()) : the_post(); update_post_caches($posts); ?>

    <li>* <a href=<?php the_permalink(); ?> rel=bookmark title=<?php the_title_attribute();

    ?>><?php the_title(); ?></a></li>

    <?php endwhile; else : ?>

    <li>* 暫無(wú)相關(guān)文章</li>

    <?php endif; wp_reset_query(); } ?>

    </ul>

    方法三:標(biāo)簽相關(guān),sql獲取

    獲取相關(guān)文章的原理與方法一相似,不過(guò)在獲取文章的時(shí)候是以sql語(yǔ)句來(lái)直接讀取數(shù)據(jù)庫(kù),從而隨機(jī)獲取6篇相關(guān)文章記錄,而不是wordpress的函數(shù)query_posts().

    <ul id=tags_related>

    <?php

    $post_tags = wp_get_post_tags($post->id);

    if ($post_tags) {

    foreach ($post_tags as $tag)

    {

    // 獲取標(biāo)簽列表

    $tag_list[] .= $tag->term_id;

    }

    // 隨機(jī)獲取標(biāo)簽列表中的一個(gè)標(biāo)簽

    $post_tag = $tag_list[ mt_rand(0, count($tag_list) - 1) ];

    $related = $wpdb->get_results(

    select {$wpdb->prefix}posts.post_title, {$wpdb->prefix}posts.guid

    from {$wpdb->prefix}posts, {$wpdb->prefix}term_relationships, {$wpdb->prefix}term_taxonomy

    where {$wpdb->prefix}posts.id = {$wpdb->prefix}term_relationships.object_id

    and {$wpdb->prefix}term_taxonomy.taxonomy = 'post_tag'

    and {$wpdb->prefix}term_taxonomy.term_taxonomy_id = {$wpdb->prefix}

    term_relationships.term_taxonomy_id

    and {$wpdb->prefix}posts.post_status = 'publish'

    and {$wpdb->prefix}posts.post_type = 'post'

    and {$wpdb->prefix}term_taxonomy.term_id = ' . $post_tag . '

    and {$wpdb->prefix}posts.id != ' . $post->id . '

    order by rand( )

    limit 6);

    // 以上代碼中的 6 為限制只獲取6篇相關(guān)文章

    // 通過(guò)修改數(shù)字 6,可修改你想要的文章數(shù)量

    if ( $related ) {

    foreach ($related as $related_post) {

    ?>

    <li>* <a href=<?php echo $related_post->guid; ?> rel=bookmark 

    title=<?php echo $related_post->post_title; ?>><?php echo $related_post->post_title; ?></a></li>

    <?php } } else { ?>

    <li>* 暫無(wú)相關(guān)文章</li>

    <?php } }?>

    </ul>

    方法四:分類相關(guān),sql獲取

    獲取相關(guān)文章的原理與方法二相似,不過(guò)在獲取文章的時(shí)候是以sql語(yǔ)句來(lái)直接讀取數(shù)據(jù)庫(kù),從而隨機(jī)獲取6篇相關(guān)文章記錄,而不是wordpress的函數(shù)query_posts().

    <ul id=cat_related>

    <?php

    $cats = wp_get_post_categories($post->id);

    if ($cats) {

    $cat = get_category( $cats[0] );

    $first_cat = $cat->cat_id;

    $related = $wpdb->get_results(

    select wp_posts.post_title, wp_posts.guid

    from wp_posts, wp_term_relationships, wp_term_taxonomy

    where wp_posts.id = wp_term_relationships.object_id

    and {$wpdb->prefix}term_taxonomy.taxonomy = 'category'

    and {$wpdb->prefix}term_taxonomy.term_taxonomy_id = {$wpdb->prefix}term_relationships.term_taxonomy_id

    and {$wpdb->prefix}posts.post_status = 'publish'

    and {$wpdb->prefix}posts.post_type = 'post'

    and {$wpdb->prefix}term_taxonomy.term_id = ' . $first_cat . '

    and {$wpdb->prefix}posts.id != ' . $post->id . '

    order by rand( )

    limit 6);

    if ( $related ) {

    foreach ($related as $related_post) {

    ?>

    <li>* <a href=<?php echo $related_post->guid; ?> rel=bookmark 

    title=<?php echo $related_post->post_title; ?>><?php echo $related_post->post_title; ?></a></li>

    <?php } } else { ?>

    <li>* 暫無(wú)相關(guān)文章</li>

    <?php } }?>

    </ul>

    方法五:作者相關(guān)

    該方法是獲取該文章作者的其他文章來(lái)充當(dāng)相關(guān)文章,代碼如下:

    <ul id=author_related>

    <?php

    $post_author = get_the_author_meta( 'user_login' );

    $args = array(

    'author_name' => $post_author,

    'post__not_in' => array($post->id),

    'showposts' => 6, // 顯示相關(guān)文章數(shù)量

    'orderby' => date, // 按時(shí)間排序

    'caller_get_posts' => 1

    );

    query_posts($args);

    if (have_posts()) : 

    while (have_posts()) : the_post(); update_post_caches($posts); ?>

    <li>* <a href=<?php the_permalink(); ?> rel=bookmark 

    title=<?php the_title_attribute(); ?>><?php the_title(); ?></a></li>

    <?php endwhile; else : ?>

    <li>* 暫無(wú)相關(guān)文章</li>

    <?php endif; wp_reset_query(); ?>

    </ul>

    時(shí)間效率對(duì)比

    我們將用之前的一個(gè)php代碼對(duì)以上各個(gè)相關(guān)文章代碼執(zhí)行時(shí)間進(jìn)行測(cè)算,以便對(duì)以上各個(gè)的方法進(jìn)行效率,給你的選擇提供參考。以下是在同一篇文章中獲取6篇相關(guān)文章,以上各方法最終測(cè)算的時(shí)間如下:

    方法一:0.18067908287048 秒

    方法二:0.057158946990967 秒

    方法三:0.037126064300537 秒

    方法四:0.045628070831299 秒

    方法五:0.023991823196411 秒

    更多信息請(qǐng)查看CMS教程
    易賢網(wǎng)手機(jī)網(wǎng)站地址:wordpress實(shí)現(xiàn)相關(guān)文章功能代碼方法
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!
    相關(guān)閱讀CMS教程

    2025國(guó)考·省考課程試聽報(bào)名

    • 報(bào)班類型
    • 姓名
    • 手機(jī)號(hào)
    • 驗(yàn)證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
    工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
    云南網(wǎng)警備案專用圖標(biāo)
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
    云南網(wǎng)警報(bào)警專用圖標(biāo)