您可以为此创建短代码
1.取消搜索短代码add_shortcode(functions.php)
add_shortcode(\'bquote\',\'ravs_blockquotes_func\')
function ravs_blockquotes_func( $atts, $content="" ) {
extract( shortcode_atts( array(
\'style\' => \'style1\'
), $atts ) );
return \'<blockquote class="\'.$style.\'">\'.$content.\'</blockquote>\'
}
2。现在只需在短代码(post或page editer)中定义quote
[bquote style="style2"]your quote[/bquote]
它以html格式输出,如
<blockquote class="style2">your quote</blockquote>
3。为所需的blockquote样式创建尽可能多的类。它易于使用和理解。
Important Link:
WordPress Shortcode API
WordPress shortcode complete guide