私はPHPコード(ACF Proプラグインコード)を持っています。このコードをVisual Composerに挿入するにはどうしたらいいですか?長い間ソリューションを見つけることができませんが、今は私のために重要です。Visual ComposerにPHPコードを挿入
<?php if(have_rows('add_a_new_table')): ?>
<?php
while(have_rows('add_a_new_table')):
the_row();
// vars
$t_title = get_sub_field('t_title');
$t_pricing = get_sub_field('t_pricing');
$t_emails_number = get_sub_field('t_emails_number');
?>
<div class="col-sm-12 col-sm-4 text-center">
<div class="courses-column">
<div class="courses-column-inner">
<h3><?php echo $t_title; ?></h3>
<p style="font-size: 24px;">
<?php echo $t_pricing; ?>
</p>
<br>
<p style="font-size: 16px;">
<?php echo $t_emails_number; ?>
</p>
</div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
私は条件しばらくので、もし&のショートコードを経由して、それを実現することはできません。 Row HTMLとRow JSは私にとっても役に立たない。地図のショートコード - -
https://wpbakery.atlassian.net/wiki/pages/viewpage.action?pageId=524332 –