我一直在使用这里的代码,但是自从我需要将图像包装在一个 div 中之后,即使我将选择器更改为图像,它也不起作用。必须将图像包装在 div 中以使其样式与文本具有不同的宽度。
这就是我在函数中将图像包装在 div 中的功能:
<?php
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
$replacement = '<div class="image">$1</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' );
?>
这是关于它的CSS:
#image {
margin: 0px auto 24px !important;
float: left !important;
display: block;
}
#image:after { clear: both; }
#image:before, .halfeach:after { content: ""; display: table; }
p #image img { width: 49%; margin: 0; }
p #image a:first-child img { float: left; }
p #image a:last-child img { float: right; }
我在这里有一个示例帖子。
编辑后的 CSS:
.alignright {
float: right;
margin: 0 0 50px 0;
display: inline-block;
}
.alignleft {
float: left;
margin: 0 0 50px 0;
display: inline-block;
}
a img.alignright {
float: right;
margin: 0 0 50px 0;
display: inline-block;
}
a img.alignleft {
float: left;
margin: 0 0 50px 0;
display: inline-block;
}
#page-container .image {
margin: 7px 0px !important;
}