我正在使用wordpress插件短标签,需要一个字段来加载自定义字段。我想知道如何在插件php代码中回显自定义域。我是php的初学者,所以无法解决这个问题:
这是我的代码:
<?php
$custom_fields = get_post_custom();
$my_custom_field = $custom_fields['donationbar'];
foreach ( $my_custom_field as $value )
echo "$value"; ### <-- that value
我想将此值放在下面的goal_id
中:
donation_can_donation_form(
$goal_id = 'VALUE HERE', $show_progress = true, $show_description = true,
$show_donations = false, $show_title = false, $title = "", $return = false
);
我想在$value
内加载goal_id
。这样我只需要在自定义字段中添加目标的ID,其余的将被硬编码到主题中。
答案 0 :(得分:0)
哈哈,我想我明白了!
以下是工作代码:
$custom_fields = get_post_custom();
$my_custom_field = $custom_fields['donationbar'];
foreach ( $my_custom_field as $value )
donation_can_donation_form(
$goal_id = $value, $show_progress = true, $show_description = false,
$show_donations = false, $show_title = false, $title = "", $return = false
);