Bootstrap 在 Wordpress 中自动生成 <p> 标签
Posted
技术标签:
【中文标题】Bootstrap 在 Wordpress 中自动生成 <p> 标签【英文标题】:Bootstrap auto generate <p> tag in Wordpress 【发布时间】:2021-07-23 12:22:15 【问题描述】:谁能帮我解决这个问题?我在我的 p 标签中使用了the_content()
,并且引导程序自动生成更多的p
标签,甚至内容也没有放在p
中。它在另一个p
图片1:
图2:
【问题讨论】:
请在您的问题中添加您的代码而不是图片。 【参考方案1】:因为 the_content() 将始终使用 <p>
标记包装内容。
您可以使用 get_the_content() insted of the_content(),但使用 get_the_content() 将为您提供没有任何短代码或嵌入媒体的内容,如 codex 所述。
这是获得您想要的东西的另一种解决方案:
<?php
$content = get_the_content();
$content = apply_filters('the_content', $content);
$replace = '<p class="discription">';
echo str_replace('<p>', $replace, $content ); ?>
【讨论】:
以上是关于Bootstrap 在 Wordpress 中自动生成 <p> 标签的主要内容,如果未能解决你的问题,请参考以下文章
WordPress 自定义主题中的 Bootstrap 3 响应式表格代码替换
WordPress - 如何使用 Bootstrap 4.5 在工具提示中添加 HTML?
Bootstrap、WordPress 和 NavWalker - ***导航链接不起作用