Skip to content

Instantly share code, notes, and snippets.

@barbwiredmedia
Last active July 24, 2024 18:15
Show Gist options
  • Save barbwiredmedia/9104505 to your computer and use it in GitHub Desktop.
Save barbwiredmedia/9104505 to your computer and use it in GitHub Desktop.
Wordpress trim words shorten post meta / custom field. ACF wp_trim_words create an excerpt. http://codex.wordpress.org/Function_Reference/wp_trim_words
<?php
$content = get_post_meta($post->ID, your_custom_field_meta, true);
$trimmed_content = wp_trim_words($content, 15, '... <a href="' . get_permalink() . '">Read More</a>');
echo $trimmed_content;
?>
@barbwiredmedia
Copy link
Author

You're quite welcome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment