1
$ key => $ 값 쌍의 값을 변경하려고하는데 작동하지 않는 것 같습니다.
$atts = shortcode_atts(array(
"type" => FALSE,
"size" => FALSE
), $atts);
print_r($atts);
출력 :
Array
(
[type] => default
[size] => default
)
if ($atts['size'] == 'default') {
$atts['size'] == false;
}
print_r($atts);
출력 :
Array
(
[type] => default
[size] => default
)
기본적으로, 무엇을 내가 원하는 "크기"가 "기본" 값을 false 또는 빈 문자열. 내가 도대체 뭘 잘못하고있는 겁니까?
OMG, 나는 바보입니다. 나는 내가 어떻게 보지 못했는지 모른다. 고맙습니다!! – user387990