php 如何在标题中添加长度字符?

1hdlvixo  于 2022-12-21  发布在  PHP
关注(0)|答案(1)|浏览(134)

这是我的代码:

<li class="alm-layout alm-3-col <?php alm_is_last($alm_current); ?> alm-blog-card-2">
    <?php if ( has_post_thumbnail() ) { ?>
   <div class="alm-gallery-img-wrap">
      <?php the_post_thumbnail('alm-cta'); ?>
   </div>
   <?php }?>
    <div class="alm-card-details">
    <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>      
    <?php alm_get_excerpt(20); ?>
    <a id="arrow" href="<?php the_permalink() ?>" class="more">
                  Read More</a>
    </div>
</li>

我想修改我的h3标题的长度。
谢谢你的帮助。

gojuced7

gojuced71#

您可以使用:

<?php strlen(the_title()) > 50 ? substr(the_title(),0,50)."..." : the_title(); ?>

在WordPress中,您可以使用:

<?php echo wp_trim_words( get_the_title(), 10 ); ?>

此致,

相关问题