I'm using a wordpress plugin shorttag which needs one field to load through a custom field. I want to know how I can echo the customfield inside the plugin php code. I'm a beginner in php so can't figure this out:

Here's my code:

< ? php $custom_fields = get_post_custom(); $my_custom_field = $custom_fields['donationbar']; foreach ( $my_custom_field as $value ) echo "$value"; <-- I want this value to go in the goal_id below

donation_can_donation_form($goal_id = 'VALUE HERE', $show_progress = true, $show_description = true, $show_donations = false, $show_title = false, $title = "", $return = false) ; ? >

I want to load the $value inside the goal_id. This way I will only need to add the ID of the goal in the custom fields and the rest will be hardcoded into the theme.

Any help would be appreciated!

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Lol I think I got it!

Here is the working code:

  $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) ;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.