这很可能意味着没有检索到键的自定义post值Description
你用过的。根据Codex, Returns nothing if no such key exists, or none is entered.
尝试添加print_r($key_values);
就在那之后get_post_custom_values("Description");
并检查是否检索到任何值。
要跳过此警告(当您没有任何与帖子关联的自定义帖子值时),应检查$key_values
is an array 在执行foreach
. 别忘了避开你的双引号。
if( is_array( $key_values ) ){
foreach($key_values as $key => $value );
echo "$key => $value(\\"Description\\") <br />"; #You should escape your double quotes here!
}