0

我想在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 标签的位置?

4

1 回答 1

0

我根本不会使用数据库内容插入来支持 CSS 解决方案:

a[href $='.pdf'] { 
   padding-right: 64px;
   background: transparent url(domain.com/pdf-icon.jpg) no-repeat center right;
}
于 2012-09-21T20:39:19.443 回答