如何将php代码添加为word wordpress?

时间:2016-12-12 12:57:47

标签: php wordpress advanced-custom-fields custom-wordpress-pages

我正在使用高级自定义字段来生成字段。

我有一个文字字段,我称之为$ctaicon = get_sub_field('cta_icon');

我想将其添加为一个类来替换下面的类:

<i class="fa fa-file-text-o"></i>

我想用

替换class =“fa fa-file-text o”
<?php echo $ctaicon; ?>

我该怎么做?只是添加PHP不起作用

1 个答案:

答案 0 :(得分:1)

这很简单。只需添加以下代码即可。

$cls = '';

  $ctaicon = get_sub_field('cta_icon');

  if($ctaicon){

    $cls = $ctaicon;

}else{

    $cls = 'fa fa-file-text-o';

}

在元素下面回显$ cls变量。

<i class='<?php echo $cls; ?>'></i>