我想在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>
答案 0 :(得分:0)
我得到了答案只需使用此php函数substr()
:
<?php echo substr($g_name,0,10).'...';?>