Özel birden fazla değer alanları, Wordpress, PHP

2 Cevap php

Im pretty new to this with

İşte ben çalışma almak bir değere sahip orijinal kod gider:

$ Açıklama = get_post_meta ($ post-> ID, "açıklama", false);

if ($ açıklama [0] == "") {

{}Else

Products

foreach($description as $description) { echo '

'. $ Açıklaması.'

'; }

}

`

Daha sonra bir özel alan giriş değerleri alınamadı ve birlikte ve aynı inbetween dışarı koyarak bu kodu değiştirmek zorluklar var.

Here is code with one more value added, but im uncearten how to combine thoose 2 values: ` $description = get_post_meta($post->ID, "Description", false); $seccond_value = get_post_meta($post->ID, "price", false);

if ($ açıklama [0] == "") { // how do i combine 2 values here?

{}Else

products

// how does this part work and how to i combine 2 values here? foreach($description as $description) { echo '

'. $ Açıklaması.'

'; }

}`

Belki burada birisi benim yukarıdaki soruları kapsar iyi sajt için iyi bir ipucu var?

/ / Azezer

2 Cevap

Bu deneyin

if ($description[0] != "" && $seccond_value[0] != "") { 

// Combine two values and print them


} else {

// Value is not set

}

Ürün açıklaması ve fiyat aynı özel alan değeri olabilir. Sadece o kadar bölünmüş ve sınıflandırır.

Check Scenario#2 in this post to find out how: http://www.graphicbeacon.com/how-to-split-and-categorize-wordpress-custom-field-values/