Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Ajay

    (@ajay)

    Can you show me an example of this?

    Thread Starter powerchoice

    (@powerchoice)

    Hi Ajay,

    Here’s a screenshot: https://i.imgur.com/dWdG24D.jpg

    As you can see, the Youtube links are seen within the post excerpts.

    Plugin Author Ajay

    (@ajay)

    Hi,

    You mind need to use some kind of regex to strip out the youtube URLs. To be honest, I’m not sure what that should be.

    You could then write a filter function in your themes functions.php to filter ‘crp_excerpt’ that would strip this youtube link off.

    function crp_strip_youtube( $output ) {
    
       $pattern = REGEX TO STRIP YOUTUBE
       $output = preg_replace( $pattern, '', $output );
    
       return $output;
    }
    apply_filters( 'crp_excerpt', 'crp_strip_youtube' );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Filter Links from Post Excerpt?’ is closed to new replies.