Advertisement
valuser

Limit Characters - This works

Mar 14th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_filter("the_content", "plugin_myContentFilter");
  2.  
  3. function plugin_myContentFilter($content) {
  4. $post_type = get_post_type($post_id);
  5. if ( $post_type == 'ideas') {
  6. // Take the existing content and return a subset of it
  7. //return wp_trim_words( $content, 600, NULL );
  8. return substr($content, 0, 3000);
  9. } else {
  10. return $content;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement