$test = array(
'tes1' => 6,
'tes2' => 5
);
$test = array(
'tes1' => 6,
'tes2' => 5
);
add_shortcode ('wp-r_dop_filter_ise','cod');
function cod(){
$test = array(
'tes1' => 6,
'tes2' => 5
);
$return='<h3>hello'.$test['tes1'].'</h3>';
for ($i = 1; $i <= $test['tes1']; $i++) {
$return.='<h3>hello'.$i.'</h3>';
}
return $return;
}