我想删除自定义字段上的所有链接。
我的当前字段:
<li><a href="">my item</a></li>
我想知道:
<li>my item</li>
这是我尝试过的代码,但它对我不起作用。
function wpse_227315_strip_hyperlinks( $content ) {
preg_match_all( \'!<a[^>]*? href=[\\\'"]#[^<]+</a>!i\', $content, $matches );
foreach ( $matches[0] as $link )
$content = str_replace( $link, strip_tags( $link ), $content );
return $content;
}
add_filter( \'acf/load_value/name=artist\', \'wpse_227315_strip_hyperlinks\' );