尝试将ACF添加到作者元,同时添加一个类

时间:2021-03-04 作者:Aprilia P.

我正在尝试添加一个名为“acf”的字段;“名称”;同时向其添加css类

the_field(\'name\')
至此代码

if ($go_magazine_options[\'post_meta_author\'] === \'enable\' && in_the_loop()) {    
    echo \'<span class="client">\' . get_the_field(\'name\') .
   \'<span class="entry-meta-author author vcard"><i class="fa fa-user"></i><a class="fn" href="\' . 
   esc_url(get_author_posts_url(get_the_author_meta(\'ID\'))) . \'">\' . 
   esc_html(get_the_author()) . \'</a></span>\' . "\\n";
}
但有些东西不起作用了?

1 个回复
最合适的回答,由SO网友:Aprilia P. 整理而成

小Aprilia学会编码;-)justed使用自己的if规则添加了ACF字段,这是一个愚蠢的想法

if( get_field(\'apri\') ): ?>
<span class= "promo"><?php the_field(\'apri\'); ?></span>
<?php endif; 

相关推荐