[row]
[column size="eight"]
[row]<h5>HELLO<strong>WORLD</strong></h5>[/row]
[row]<h5>CATEGORIES: <strong>WEB / CREATIONS / INTERACTIVE DESIGN</strong></h5>[/row]
[/column]
[column size="four"]Insert your content here[/column]
[/row]
这是我使用的简码。但由于某种原因, [row]...[/row] 短代码似乎不起作用。这是简码功能:
function su_column_shortcode( $atts, $content = null ) {
extract( shortcode_atts( array(
'size' => 'six'
), $atts ) );
return '<div class="' . $size . ' columns">' . su_do_shortcode( $content, 'c' ) . '</div>';
}
function su_row_shortcode($atta = null, $content = null ) {
return '<div class="row">'.su_do_shortcode( $content, 'r').'</div>';
}