移除 Shortcode 中自动添加的 br 和 p 标签
最近在学习短代码,使用我爱水煮鱼的方法去掉短代码中的p标签和br标签没有效果,不知道是什么原因。
自己琢磨了一下,可以用以下方法去掉短代码中的p标签和br标签:
function my_link( $atts, $content = null ) {
$content=str_replace(array("<p>","</p>","<br />"),"",$content);//移除 Shortcode 中自动添加的 br 和 p 标签
return '<a href="https://pdbn.top/">'.$content.'</a>';
}
add_shortcode( 'myshortcode ', 'my_link' );
