Viewing 1 replies (of 1 total)
  • Plugin Author chinmoy29

    (@chinmoy)

    Add the following code in your functions.php file

    add_filter("the_content", "excerptforTestimonialSlider");
    
      function excerptforTestimonialSlider($content)
      {
        if( get_post_type() == "testimonial")
          return substr($content, 0, 300);
        else
          return $content;
      }
Viewing 1 replies (of 1 total)
  • The topic ‘Limit Characters on Sldier’ is closed to new replies.