请实现以下代码中排除<h2>, <a> and <img>
html标签的目标。我试图用帖子内容中的链接替换标签关键字,并排除标签链接影响上面列出的html标签。
function link_words( $text ) {
$tags = get_tags();
if ( $tags ) {
foreach ( $tags as $tag ) {
$from = '/' . $tag->name . '/';
$to = sprintf( '<a href="%s">%s</a>', esc_url( get_term_link( $tag ) ), esc_html( $tag->name ) );
$text = preg_replace($from, $to , $text, 2);
}
}
return $text;
}
add_filter( 'the_content', 'link_words' );
请大师在家中,有没有出路。我是wp函数编码的新手。
答案 0 :(得分:0)
对于简单的HTML,您可以执行str_replace:
$text = str_replace(array("<h2>","</h2>"), "", $text);
要剥离那些更复杂的标签:
$text = preg_replace("/<img[^>]+\>/i", "", $text);
$text = preg_replace("/<a\s[^>]+\>/i", "", $text);
我刚刚测试了下面的代码,它似乎可以工作:
function link_words( $text ) {
$text = str_replace(array("<h2>","</h2>","</a>"), "", $text);
$text = preg_replace("/<img[^>]+\>/i", "", $text);
$text = preg_replace("/<a\s[^>]+\>/i", "", $text);
return $text;
}
add_filter( 'the_content', 'link_words' );