こんにちは私はgrid.cssファイルをワードプレスのショートコードに変換しようとしていますが、問題があります。
私が見たいもの:
<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. ?>
シンプルなページテンプレートでこれを試しています。
どうすれば正しく機能させることができますか?
ありがとうございました。