【发布时间】:2021-07-23 12:22:15
【问题描述】:
【问题讨论】:
-
请在您的问题中添加您的代码而不是图片。
标签: wordpress bootstrap-4 wordpress-theming
【问题讨论】:
标签: wordpress bootstrap-4 wordpress-theming
因为 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 ); ?>
【讨论】: