我想把一个div周围的所有图像是在一个特定的自定义帖子类型的内容部分。我试图整合一些回答问题,我在这里找到。但由于我不太了解语法,我不知道我做错了什么。也许有人能帮我。提前谢谢。
嗯试试这个
add_filter("the_content", "my_content_modification");
function my_content_modification($content) {
$post_type = get_post_type();
$post_type_to_check = "MY_POST_TYPE";
if ($post_type == $post_type_to_check) {
$content = preg_replace('/<img(.*?)>/', '<div class="my-div"><img$1/></div>', $content);
}
return $content;
}
我刚刚为img添加了类如果有人需要的话。再次感谢乔丹·卡特。
add_filter("the_content", "my_content_modification");
function my_content_modification($content) {
$post_type = get_post_type();
$post_type_to_check = "MY_POST_TYPE";
if ($post_type == $post_type_to_check) {
$content = preg_replace('/<img(.*?)>/', '<div class="MY_DIV"><img class="MY_IMG" $1/></div>', $content);
}
return $content;
}