• Resolved dreamsers

    (@dreamsers)


    hello

    I turned my database from vBulletin to WordPress, everything okay just on YouTube

    Links like this

    <a href="https://www.youtube.com/watch?v=cVT5pH2umyQ">https://www.youtube.com/watch?v=cVT5pH2umyQ</a>

    for example : https://www.dreams-image.com/wp/green-shoes/

    I know it should be none of hyperlink to working

    What Modifications are needed to work ?

    The page I need help with: [log in to see the link]

Viewing 11 replies - 1 through 11 (of 11 total)
  • Do you have WP-CLI installed? It has a search/replace function that can handle regular expressions.
    https://developer.www.ads-software.com/cli/commands/search-replace/

    If not there might be a plugin out there that can do it.

    Thread Starter dreamsers

    (@dreamsers)

    I can install it
    Can you help me more
    What are the Command for the required work

    Ok 1st make a BACKUP.

    wp search-replace '(<a href="https:\/\/www\.youtube\.com\/watch\?v=([a-zA-Z0-9]+).*<\/a>)' 'https://www.youtube.com/watch?v=\2' wp_posts --regex --dry-run

    Thread Starter dreamsers

    (@dreamsers)

    Great, thank you

    Thread Starter dreamsers

    (@dreamsers)

    my Brother
    Only some links that contain symbols such as “_” and “-”
    like this

    <a href="https://www.youtube.com/watch?v=_BD_DaYOWWE">https://www.youtube.com/watch?v=_BD_DaYOWWE</a>

    What change is needed to work

    Add them to your match [a-zA-Z0-9] so [a-zA-Z0-9_-]

    Thread Starter dreamsers

    (@dreamsers)

    Thank you so much again

    Thread Starter dreamsers

    (@dreamsers)

    my Brother
    There is a problem with links that contain “_” and “-”

    the output is incorrect

    
    Example https://www.youtube.com/watch?v=7-xjF0LBDHY
    Will be https://www.youtube.com/watch?v=7
    And  https://www.youtube.com/watch?v=HzhC-lO4wpu
    Will https://www.youtube.com/watch?v=HzhC
    https://www.youtube.com/watch?v=DG4tEsbf_G8
    https://www.youtube.com/watch?v=DG4tEsbf
    • This reply was modified 6 years, 9 months ago by dreamsers.
    • This reply was modified 6 years, 9 months ago by dreamsers.
    • This reply was modified 6 years, 9 months ago by dreamsers.
    • This reply was modified 6 years, 9 months ago by dreamsers.

    You likely forgot to escape the -.
    wp search-replace '(<a href="https:\/\/www\.youtube\.com\/watch\?v=([a-zA-Z_\-0-9]+).*<\/a>)' 'https://www.youtube.com/watch?v=\2' wp_posts --regex --dry-run

    Thread Starter dreamsers

    (@dreamsers)

    It works. I am grateful to you

    Thread Starter dreamsers

    (@dreamsers)

    Now just something simple if you allow
    I want to make <br /> in new line

    https://www.youtube.com/watch?v=JPkEzwjC9zE<br />

    to

    https://www.youtube.com/watch?v=JPkEzwjC9zE
    <br />
    • This reply was modified 6 years, 9 months ago by dreamsers.
Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘youtube Embed with hyperlink’ is closed to new replies.