如何在wordpress函数中跳过某些类的图像

时间:2012-11-28 20:58:37

标签: php css wordpress

我在主题的功能页面中有以下功能。基本上它的作用是在帖子页面中查找任何图像并添加一些带有css的跨度以动态创建一个pinterest按钮。

function insert_pinterest($content) {
global $post;

$posturl = urlencode(get_permalink()); //Get the post URL
$pinspan = '<span class="pinterest-button">';
$pinurlNew = '<a href="#" onclick="window.open(&quot;http://pinterest.com/pin/create/button/?url='.$posturl.'&amp;media=';

$pindescription = '&amp;description='.urlencode(get_the_title());
$options = '&quot;,&quot;Pinterest&quot;,&quot;scrollbars=no,menubar=no,width=600,height=380,resizable=yes,toolbar=no,location=no,status=no';
$pinfinish = '&quot;);return false;" class="pin-it"></a>';
$pinend = '</span>';
$pattern = '/<img(.*?)src="(.*?).(bmp|gif|jpeg|jpg|png)"(.*?) \/>/i';
$replacement = $pinspan.$pinurlNew.'$2.$3'.$pindescription.$options.$pinfinish.'<img$1src="$2.$3" $4 />'.$pinend;
$content = preg_replace( $pattern, $replacement, $content );

//Fix the link problem
$newpattern = '/<a(.*?)><span class="pinterest-button"><a(.*?)><\/a><img(.*?)\/><\/span><\/a>/i';
$replacement = '<span class="pinterest-button"><a$2></a><a$1><img$3\/></a></span>';

$content = preg_replace( $newpattern, $replacement, $content );
return $content;
}
add_filter( 'the_content', 'insert_pinterest' );

它做的一切都很好。但有没有办法让它跳过像“noPin”这样的某个类名的图像?

2 个答案:

答案 0 :(得分:1)

我会使用preg_replace_callback来检查匹配的图像是否包含noPin。

function skipNoPin($matches){
    if ( strpos($matches[0], "noPin") === false){
        return $pinspan.$pinurlNew.'$matches[2].$matches[3]'.$pindescription.$options.$pinfinish.'<img$1src="$2.$3" $4 />'.$pinend;
    } else {
        return $matches[0]

$content = preg_replace_callback( 
    $pattern, 
    skipNoPin,
    $content );

另一个图像属性可以想象包含noPin,如果你担心边缘情况,只需在if语句中进行更具体的测试。

答案 1 :(得分:0)

您必须从$pattern regexp:

中排除类noPin
$pattern = '/<img(.*?)src="(.*?).(bmp|gif|jpeg|jpg|png)"(.*?) \/>/i';

必须变得像

$pattern = '/<img(.*?)src="(.*?).(bmp|gif|jpeg|jpg|png)"(.*?) (?!class="noPin") \/>/i';

请检查regexp语法,但我们的想法是从搜索的模式中排除class="noPin"。然后,您的替换将不会添加到这些图像中。