如何设置wordpress的最大长度the_title?
How to set maximum length of wordpress the_title?
我想在 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>
我得到了答案只需使用这个 php 函数 substr()
:
<?php echo substr($g_name,0,10).'...';?>
我想在 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>
我得到了答案只需使用这个 php 函数 substr()
:
<?php echo substr($g_name,0,10).'...';?>