所见即所得之外的 WordPress 简码 html DIV

WordPress Shortcode thrown outside WYSIWYG html DIV

我正在尝试通过 Wordpress 页面所见即所得编辑器在特定 <div> 元素中将短代码放入我的页面中。短代码确实出现并且有效。但是,当页面呈现时,它不会停留在我的 <div> 中,而是不会呈现在 <div> 中,而是靠近我的页面顶部,引导页面内容。

关于如何防止这种情况有什么想法吗?

我并没有尝试将其放入页面模板中。我试图将它放在简单的自定义 html 中,在页面所见即所得编辑器中布置。

例如我将简码放在页面中,如下所示:

<div class="row">
<p>some custom page html content</p>
<div>
<div class="row">
[some_shortcode]
</div>
<div class="row">
<p>some custom page html content</p>
<div>
<div class="row">
<p>some custom page html content</p>
<div>

而是这样呈现:

<!-- THE SHORTCODES HTML APPEARS HERE and Works but not where I wanted it. -->
<!-- then the rest of the pages html content -->
<div class="row">
<p>some custom page html content</p>
<div>
<div class="row"><!-- no more shortcode-->
</div>
<div class="row">
<p>some custom page html content</p>
<div>
<div class="row">
<p>some custom page html content</p>
<div>

每当插件打印出其内容而不是使用 return 时,就会出现此问题。

有关详细信息,请参阅简码 API 文档; http://codex.wordpress.org/Shortcode_API#Output