-2
私はphp
でこれに新しくなっていますが、勉強に取り組んでおり、これを理解することはできません。カスタムフィールド複数の値、Wordpress、PHP
は、ここで私が働いて得る一つの値を元のコードを行く:
$description = get_post_meta($post->ID, "description", false);
if ($description[0]=="") {
<!-- If there are no custom fields, show nothing -->
} else {
<div class="wrap">
<h3>Products</h3>
foreach($description as $description) {
echo '<p>'.$description.'</p>';
}
</div>
}
私は1つのカスタムフィールドの入力、より多くのと一緒に出してから、同じわたってるしき値をretriveするには、このコードを変更するには困難を持っています。ここで
は1つのより多くの価値を持つコードを追加しましたが、イムuncearten方法thoose 2の値を組み合わせることである。
$description = get_post_meta($post->ID, "Description", false);
$seccond_value = get_post_meta($post->ID, "price", false);
<?php
if ($description[0]=="") {
?>
<strong> how do i combine 2 values here?</strong>
<!-- If there are no custom fields, show nothing -->
<?php
} else {
?>
<div class="wrap">
<h3>products</h3>
<strong>// how does this part work and how to i combine 2 values here?</strong>
<?php
foreach($description as $description) {
echo '<p>'.$description.'</p>';
}
?>
</div>
}
ここたぶん誰かが上記の私の質問をカバーして良いsajtのための良いヒントを持っていますか?