a phpに関数(Wordpressのthe_content()など)があり、その中にある可能性のあるhtmlタグを壊さずにテキスト文字列を制限できますか?
//example:
echo substr ('<p>this <a>is</a> a test</p>', 0, 10);
//output: "<p>this <a"
//desired output: "<p>this </p>"
a phpに関数(Wordpressのthe_content()など)があり、その中にある可能性のあるhtmlタグを壊さずにテキスト文字列を制限できますか?
//example:
echo substr ('<p>this <a>is</a> a test</p>', 0, 10);
//output: "<p>this <a"
//desired output: "<p>this </p>"