我安装了插件http://wordpress.org/plugins/automatic-featured-image-posts/,但我遇到了问题,因为插件在创建精选图片后没有从帖子内容中删除原始图片。 (因此,当我不添加特色图像时,帖子上会出现2个图像) 我尝试将其添加到auto-featured-image.php
add_action('publish_post','eliminaroriginal');
然后
function eliminaroriginal(){//更新没有图片的帖子 $ post_parent_id = $ post-> post_parent === 0? $ post-> ID: $后> post_parent; $ contenido = preg_replace(“/ [标题 ?+ [/字幕] | \< [img] [^>] [。] *> / i“,”“,$ post-> post_content, 1); $ mipost = array(); $ mipost ['ID'] = $ post_parent_id; $ mipost ['post_content'] = $ contenido; wp_update_post($ mipost); }
但它没有任何结果。 请帮助我,我不知道该怎么做。
先谢谢你!