Advanced Custom Fields

时间:2015-12-21 作者:Ollie

我试图调用一个字段,它正指向一个帖子类型。我只想在字段中有内容时调用标题。我对PHP非常陌生,不确定它是如何工作的。我在content single中添加了以下脚本。php

 <?php $field = get_field(\'introduction\'); 
    if(!empty && is_array){
        ?>
         <div class="sc-project-type">
            <h4>Introduction:</h4>
            <?php //$terms = get_the_terms($post->ID, \'project_type\');
                echo \'$field\'; ?>
         </div>
        <?php } ?>
这个制动器什么也不产生。如果我只是这样做的话,它是可行的,但我想添加很多不总是可见的字段。有什么想法吗?

1 个回复
SO网友:Ollie

好的,玩了一段时间后,我用以下代码解决了我的问题:

        <?php $field = get_field(\'introduction\');
    if(!empty ($field)){
        ?>
         <div class="sc-project-type">
            <h4>Introduction:</h4>
            <?php echo ($field); ?>
         </div>
        <?php } ?>

相关推荐

无法在模板函数.php中使用IS_HOME

我试图在标题中加载一个滑块,但只在主页上加载。如果有帮助的话,我正在使用Ultralight模板。我正在尝试(在template functions.php中)执行以下操作:<?php if ( is_page( \'home\' ) ) : ?> dynamic_sidebar( \'Homepage Widget\' ); <?php endif; ?> 但这行不通。现在,通过快速的google,我似乎需要将请