我想在帖子中为每个图片添加div,以便能够在悬停时添加社交分享图标。 为此,我使用了Rick Sanchez共享的有用代码:How do I add A Div around each WordPress post image ?
function breezer_addDivToImage( $content ) {
// A regular expression of what to look for.
$pattern = '/(<img([^>]*)>)/i';
// What to replace it with. $1 refers to the content in the first 'capture group', in parentheses above
$the_url = the_permalink();
$replacement = '<div class="imgWrap">
$1
<div class="imgDescription">
<div class="theShareLinks">
<img src="http://localhost/mysite/wp-content/uploads/2014/08/dfc2.png" />
<a href="http://twitter.com/share?text=&url='.get_the_permalink() .'" class="img-twitter" title="Share on Twitter" target="_blank"></a>
<a href="http://www.facebook.com/sharer.php?u='.get_the_permalink() .'?" class="img-facebook" title="Share on Facebook" target="_blank" onclick="window.open(this.href, \'newwin\', \'width=500, height=200\'); return false;" ></a>
<a href="https://plus.google.com/share?url='.get_the_permalink() .'" class="img-google" title="Share on Google" target="_blank"></a>
</div>
</div>
</div>';
// run preg_replace() on the $content
$content = preg_replace( $pattern, $replacement, $content );
// return the processed content
return $content;
}
add_filter( 'the_content', 'breezer_addDivToImage' );
使用此代码,我现在能够在每个图像(twitter,google&amp; facebook)上方显示共享图标,但我的问题是共享的图像始终是帖子的第一个图像而不是图像悬停(对于例如,第二,第三等)。 您是否知道如何根据Rick提供的代码执行此操作?如何检索悬停的图像?
非常感谢你的帮助!
答案 0 :(得分:0)
我已经处理了上面的代码,现在我可以在匹配表的帖子中检索每个图像的url。这将允许检索社交网络共享按钮的每个图像URL但我现在被阻止如何使用preg_replace与每个图像将不同的替换变量,因为它将检索保存在匹配表中的图像URL。你知道我怎么做吗?
为了检索每个图像网址,我使用了以下代码:
// search for images inside content and return images URLs
$count = preg_match_all('/<\s*img [^\>]*src\s*=\s*[\""\']?([^\""\'>]*)/i' , $content, $matches);
// now all my images url are in $matches[1][x]