3

如何限制此代码中的字符?

.get_post_meta($post->ID,'smple1',true).

我尝试过以下方法:

$trim_length = 21;  //desired length of text to display 
$custom_field = 'smple1';  
$value = get_post_meta($post->ID, $custom_field, true);    
if ($value) {    
  echo '.rtrim(substr($value,0,$trim_length)) . ';  
}

但我得到服务器错误。我一定错过了一个endif或什么?

非常感谢。

4

3 回答 3

0

使用您的自定义元键值显示字符编号:

<?php
      $trim_length = 21;
      $custom_field = 'lp_sub_description';  
      $value = get_post_meta($post->ID, $custom_field, true);    
      if ($value) {    
        $data = rtrim(substr($value,0,$trim_length));
        echo $data;  
       } 
?> 

也使用简单的代码:

<?php echo substr(get_post_meta($post->ID, 'lp_sub_description', true), 0, 21); ?>
于 2013-06-04T12:10:33.943 回答
0

您需要获取元值,确保它在false其中,然后用于substr()获取 21 个字符,或者如果字段较短,则根据strlen().

$length = 21;
$custom_field = 'smple1';

$value = get_post_meta( $post->ID, $custom_field, true );
if ( false !== $value ){
    echo substr( $value, 0, (strlen($value) < $length)? strlen($value) : $length );
}
于 2013-06-03T23:44:10.640 回答
-1

好的,经过多次测试,它在我的情况下工作如下:

$filetext = (get_post_meta($post->ID, "smple1", true));
'.substr($filetext, 0, 8) . "...".'

注意什么时候放'. and .'

于 2013-06-04T01:02:06.387 回答