remove empty

tags from wordpress shortcodes via a php functon

前端 未结 7 1865
余生分开走
余生分开走 2021-02-13 10:20

Looking for a php function (non-jQuery or wpautop modification) approach to remove

from within wordpress.

I tried this but it does not w

7条回答
  •  忘掉有多难
    2021-02-13 10:59

    maybe a regex could work:

    $string=preg_replace_('/

    \s*

    /', '', $string);

    That should replace any

    with nothing or just whitespaces in it to nothing, thus removing them.

    When applying regex to HTML code it's a good idea to remove the \r\n of the HTML first, since they stop the regex from working.

提交回复
热议问题