我正试图摆脱wordpress在使用WP REST API时给我的短代码。我已经通过编辑class-wp-rest-posts-controller.php
通过使用strip_tags()
. 但我似乎没有找到解决短代码的方法。
我尝试了几种无效的解决方案。就像在
functions.php
// Removes Divi shortcodes
$content = preg_replace(\'/\\[\\/?et_pb.*?\\]/\', \'\', $content);
或者那个
$content = strip_tags( do_shortcode( $post->post_content ) );
我可能做错了什么我是个新手。如果你们能帮我,那就太棒了。