• 解決済 sponger0502

    (@sponger0502)


    お世話になります。

    wordpressでの文字制限(more)をしたいのですが、どのコードを書き換えてよいのかわからず困っております。

    テーマはこちらを使用しております。
    ttps://mythemeshop.com/themes/ribbon/

    このPHPをいじればいいのか自分なりに探しておりましたが、やはり分からずこちらに投稿させて頂きました。
    function excerpt($limit) {
    $excerpt = explode(‘ ‘, get_the_excerpt(), $limit);
    if (count($excerpt)>=$limit) {
    array_pop($excerpt);
    $excerpt = implode(” “,$excerpt).’…’;
    } else {
    $excerpt = implode(” “,$excerpt);
    }
    $excerpt = preg_replace(‘[[^]]*]‘,”,$excerpt);
    return $excerpt;
    }

    ご指導のほど、よろしくお願い致します。

2件の返信を表示中 - 1 - 2件目 (全2件中)
2件の返信を表示中 - 1 - 2件目 (全2件中)
  • トピック「wordpressでの文字制限について」には新たに返信することはできません。