我想在wordpress中自动为pdf链接放置一个pdf图标
function my_function($content) {
$search = '^.pdf">^';
$replace='.pdf"><img src="domain.com/pdf-icon.jpg" width="64" height="64" alt="pdf download"/>';
return preg_replace($search,$replace,$content);
}
add_filter('content_save_pre','my_function');
有效,但如果再次编辑帖子,则会添加另一个图像。如何将其更改为不替换搜索.pdf
已直接在其后具有 img 标签的位置?