有时,您希望删除的不是html代码,而是短代码。然后使用类似的方法:
add_action( \'pre_amp_render_post\', \'amp_vid_rmv\' );
function amp_vid_rmv() {
add_filter( \'the_content\', \'amp_vid_div_rmv\' );
}
function amp_vid_div_rmv($content) {
$content = preg_replace(\'#\\[shortcode_name_here\\]<br \\/>#\', \'$1\', $content);
?> <div>in func 9 </div> <?php
return $content;
}