在线不卡日本ⅴ一区v二区_精品一区二区中文字幕_天堂v在线视频_亚洲五月天婷婷中文网站

  • <menu id="lky3g"></menu>
  • <style id="lky3g"></style>
    <pre id="lky3g"><tt id="lky3g"></tt></pre>

    wordpress使用the_excerpt函數(shù)顯示文章的摘要信息

    如果你的文章需要摘要信息可以使用此函數(shù),使用此函數(shù)需要了解如下四點1、它自動提取文章內(nèi)容前55個字符作為文章摘要2、摘要不含有任何html和圖片標(biāo)簽3、此函數(shù)只能用在循環(huán)中4、文章沒有明確提供摘要信息

    函數(shù)用法

    the_excerpt();

    往往使用默認(rèn)的是無法滿足我們的需求的,因此需要對此改造。

    修改摘要的長度

    默認(rèn)是55個字符,我們可以使用excerpt_length過濾器鉤子改變摘要(excerpt)的長度,代碼如下:

    function new_excerpt_length($length) {

    return 150;

    }

    add_filter(‘excerpt_length’, ‘new_excerpt_length’);

    修改摘要末尾的顯示

    摘要末尾附加的字符串默認(rèn)設(shè)置為[…],修改末尾的顯示可以用excerpt_more過濾器鉤子,代碼如下:

    function new_excerpt_more($more) {

    return ‘…’;

    }

    add_filter(‘excerpt_more’, ‘new_excerpt_more’);

    末尾加閱讀更多

    function new_excerpt_more($more) {

    global $post;

    return ‘…[閱讀更多]’;

    }

    add_filter(‘excerpt_more’, ‘new_excerpt_more’);

    將以上代碼加入到function.php中即可。

    鄭重聲明:本文內(nèi)容及圖片均整理自互聯(lián)網(wǎng),不代表本站立場,版權(quán)歸原作者所有,如有侵權(quán)請聯(lián)系管理員(admin#wlmqw.com)刪除。
    用戶投稿
    上一篇 2022年6月15日 15:21
    下一篇 2022年6月15日 15:22

    相關(guān)推薦

    聯(lián)系我們

    聯(lián)系郵箱:admin#wlmqw.com
    工作時間:周一至周五,10:30-18:30,節(jié)假日休息