我试图从WordPress内容中删除一个具有某些ID的div。我正在努力实现这样的目标
jQuery( "#some_id" ).remove();
但在服务器端,
我不知道如何在服务器端的\\u内容过滤器挂钩中做到这一点。
add_filter( \'the_content\', \'my_the_content_filter\', 20 );
function my_the_content_filter( $content ) {
$content.find(\'#some_id\').remove();
return $content;
}