您好,我正在尝试将我的 grid.css 文件转换为 wordpress 短代码,但是我遇到了问题。
我想看到的:
<div class="row>
<div class="columns one">Content</div>
<div class="columns three">Content</div>
</div>
我得到什么:
[column_one]Awesome[/column_one] [column_three]Stuff[/column_three]
我的代码:
<?php while ( have_posts() ) : the_post();
$content = get_the_content();
echo do_shortcode($content);
endwhile; // end of the loop. ?>
我正在一个简单的页面模板上尝试这个。
我怎样才能让它正常工作?
谢谢你。