Is is possible to trim text from custom field?
I wanna show part of text which is entered in custom field. Any way to show trimmed text in theme? Any function similar to wp_trim_excerpt?
Is is possible to trim text from custom field?
I wanna show part of text which is entered in custom field. Any way to show trimmed text in theme? Any function similar to wp_trim_excerpt?
I was looking for the same thing. The code below should do the trick:
<?php
$trim_length = 5; //desired length of text to display
$custom_field = 'my-custom-field-name';
$value = get_post_meta($post->ID, $custom_field, true);
if ($value) {
echo rtrim(substr($value,0,$trim_length));
}
?>
Worked perfectly for me!
This topic has been closed to new replies.