如何设置wordpress the_title的最大长度?

时间:2019-02-18 04:23:02

标签: php wordpress advanced-custom-fields maxlength

我想在WordPress高级自定义字段中设置标题的最大长度。

我这样使用,但无法正常工作:

<p style="position:relative;top:-30px;">    
    <?php
     $post_object_th = get_field('therapeutic_class');
     if( $post_object_th ): 
       $post = $post_object_th;
       setup_postdata( $post ); 
       $g_name = get_the_title();               
     endif;
    wp_reset_postdata();
    ?>
    <?php echo wp_trim_words( $g_name, 1 ); ?>
 </p>

1 个答案:

答案 0 :(得分:0)

我得到了答案只需使用此php函数substr()

<?php echo substr($g_name,0,10).'...';?>
相关问题