有多种方法,但我喜欢做的是创建短代码,例如[一个半]:
function one_half_sh( $atts, $content = null ) {
return \'<div class="one-half">\' . do_shortcode($content) . \'</div>\';
}
add_shortcode( \'one_half\', \'one_half_sh\' );
然后CSS可以如下所示:
.one-half {
width: 48%;
margin: 0 4% 0 0;
float: left;
}
第二列将具有相同的标记,但边距为0。这允许设置非常灵活的布局,您可以在每篇文章上自定义。
EDIT: 对于第二列,只需使用完全相同的代码创建另一个短代码,但添加一个CSS类,如.second-col
您将在样式表中设置样式