如何将自定义字段值放入变量

时间:2013-07-26 作者:user2506619
function zh_get_invoice_round_off_number() 
    {
        global $post;
        return get_post_meta($post->ID, \'invoice_round_off_number\', true);
    }

    function zh_invoice_round_off_number() 
    {
        echo zh_get_invoice_round_off_number();
    }
1 个回复
最合适的回答,由SO网友:Tolea Bivol 整理而成

在循环中:

$custom_fields = get_post_custom(the_ID());
$my_custom_field = $custom_fields[\'zh_invoice_round_off_number\'];
convert_number((int)$my_custom_field);
或使用您的功能:

$custom_value = zh_get_invoice_round_off_number();
echo convert_number( (int) $custom_value );

结束

相关推荐

Child Theme Variables

在我的主题中,我使用了以下内容:<div id=\"brickwall\" data-brickinvert=\"<?php echo brickAlign(); ?>\"> 我将代码放入函数中。php:function brickAlign() { $a = \"true\"; return $a; } 现在在儿童主题中,我想将$a更改为false。然后在子主题中,我的html如下所示:<div id=\"bric