Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function acf_excerpt($postid, $custom_field, $trim_length, $after){
  2. global $wp_query;
  3. global $post;
  4. $value = get_post_meta($postid, $custom_field, true);
  5. $custom_excerpt = preg_replace("#\[caption.*\](.*)\[\/caption\]#", "", $value);
  6. $new_excerpt = strip_tags(trim($custom_excerpt));
  7. $acf_excerpt = substr($new_excerpt,0,$trim_length);
  8. if ($acf_excerpt) {
  9. echo "<p class='text'>" . $acf_excerpt . $after . "</p>";
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement