更改博客帖子上的HTML标记

时间:2020-02-07 作者:sampad debnath

我的html标记是:

<div class="quote-wrapper">
<div class="quotes">MCSE boot camps have its supporters and its detractors. Some people do not understand why you should have</div>
</div>
如何通过wordpress功能显示。

非常感谢。

1 个回复
SO网友:WebElaine

您可以将此代码直接粘贴到经典编辑器或块编辑器HTML块中。

如果不想每次都手动粘贴完整的HTML,可以创建一个短代码或一个块来包装它。类似于

<?php
// create shortcode [wpse_quote]
add_shortcode(\'wpse_quote\', \'output_wpse_quote\');
function output_wpse_quote($content = null) {
    // Wrap the content in divs
    return \'<div class="quote-wrapper">
                <div class="quotes">\' . do_shortcode($content) . \'</div>
            </div>\';
}
?>
在经典编辑器中,您可以通过在括号中键入开始和结束短代码来使用短代码,并在它们之间插入引号文本:

[wpse_quote]Enter the quote text here.[/wpse_quote]

在块编辑器中,可以添加一个短代码块,然后将相同的文本粘贴到中。(如果您使用的是块编辑器,则最好使用块,因为这样您可以添加实际的div并设置它们的样式,使它们在编辑器中的外观与在前端上的外观相同。)

相关推荐

Admin Theme customization

我遵循wordpress codex网站上关于通过插件创建管理主题的说明。我激活了插件,但我的样式表没有包含在<head>.. 这是我的代码:add_action( \'admin_init\', \'kd_plugin_admin_init\' ); add_action( \'admin_menu\', \'kd_plugin_admin_menu\' ); function kd_plugin_admin_init() { /* Register