自定义字段 - 布尔显示True / False为是/否

时间:2013-05-07 13:02:08

标签: php wordpress

我从房地产网站导入字段。

导入一个自定义字段看起来像这样......

导入后的字段名称--->辅助生活 字段值--->假

输出wordpress中的显示我用这个...

<?php 
    global $wp_query;
    $postid = $wp_query->post->ID;

    if ($immopress_property['assistedLiving']): ?>
        <li class="assistedLiving">
            <span class="attribute"  style="width:200px;display:block;float:left;"><?php echo 'Seniorengerechtes Wohnen' ; ?><span class="wpp_colon">:</span></span>
            <span class="value"><?php echo get_post_meta($post->ID, 'assistedLiving' , true); ?>&nbsp;</span>
        </li>

        <?php wp_reset_query(); ?>
    <?php endif; ?>   

网站上的结果看起来如此......

**Seniorengerechtes Wohnen:false**

如何显示False / True值以显示是/否或德语Ja / NEIN?

显示所有字段的Funktion(使用是/否显示右侧):

function immopress_the_fields( $args ) {

    global $post, $ImmoPress;

    extract( wp_parse_args( $args, array (
        'id' => $post->ID,
        'exclude' => $exclude,
        'echo' => TRUE
    ) ), EXTR_SKIP );

    $fields = immopress_get_fields( $args );

    if ( !$fields ) 
        return false;

    $output = '';

    $output .= '<ul class="immopress-fields">';

    foreach ( $fields as $key => $value) {

        $entry = $ImmoPress->values[$value];
        if ( $entry == '') 
            $entry = $value;

        $output .= "<li class='immopress-field-$key'>";
        $output .= "<strong class='immopress-key'>{$ImmoPress->fields[$key]}: </strong>";
        $output .= "<span class='immopress-value'>$entry</span>";
        $output .= "</li>"; 
    }

    $output .= '</ul>';

    if ( $echo ) {
        echo $output;
    } else {
        return $output;
    }

但我只需要显示单个姓名&amp;值不是所有importet字段。

短代码代码..

function immopress_fields_shortcode( $atts ) {

    $args = wp_parse_args( $atts, array (
        'echo' => FALSE
    ) );

    return immopress_the_fields( $args );       
}
add_shortcode( 'immopress_fields', 'immopress_fields_shortcode' ); 

希望有人可以帮助我。

由于

2 个答案:

答案 0 :(得分:0)

如果你只是像这样使用if / else语句怎么样:

<span class="value"><?php $assist=get_post_meta($post->ID, 'assistedLiving' , true); if ($assist=="") echo "keine Daten"; else if(strtolower($assist)=='true') echo "Ja"; else if(strtolower($assist)=='false') echo "Nein"; ?>&nbsp;</span>

注意:

要使上述代码生效,辅助生活的值必须使用true / false而不是1或0.

<强>更新

这是我第一次尝试修改短代码,所以我不确定它是否会起作用。

我也不确定这是否是您所需要的:) - 我修改了它以便您可以指定参数 fieldname ,并且在使用时它应该只显示该字段。< / p>

将短代码功能更改为:

function immopress_fields_shortcode( $atts ) {

    $args = wp_parse_args( $atts, array (
        'echo' => FALSE,
        'fieldname' => ""
    ) );

    return immopress_the_fields( $args );       
}
add_shortcode( 'immopress_fields', 'immopress_fields_shortcode' ); 

之后的函数immopress_the_fields()中
foreach ( $fields as $key => $value) {

添加:

if ($fieldname!="")//only look for a field when it is used in the shortcode
  if ($fieldname!=$key)//skip until you find the value in the shortcode 
    continue;

并不是说这段代码效率不高,因为$ fields会一直填满所有字段。修改后的代码只是一种解决方法。

答案 1 :(得分:0)

我建议您学习Smarty,然后您的代码将是:

 <span class="value">
   {if get_post_meta($post->ID, 'assistedLiving' , true)}
     Yah
   {else}
     NEIN
   {/if}
 </span>

要创建此输出:

<span class="value">Yah</span>