我在 Wordpress 模板中有以下代码
<?php
/**
*
* Template Name: Service Details
*
*/
header();
the_post();
?>
<main role="main">
<?php banner(array(
'colour' => '#C4C332'
)); ?>
<div class="uk-block vc-area">
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
<?php
partial('client-stories-grid');
?>
<?php
partial('lets-get-started');
?>
</main>
<?php get_footer(); ?>
我们已经安装了 Visual Composer - 但是当我们通过可视化编辑器编辑页面时 - 单击插入行等时 - 没有任何反应。
我们希望能够使用类定义容器,vc-area
使其成为可视化作曲家添加其所有内容的地方。
这是第一次使用 VC,所以在他们的文档中找到术语有点棘手。
我将如何进行上述操作?
感谢