У меня есть этот код, который дает мне post_permalink
в цикле while.
<?php $value[] = array(); while ($the_query->have_posts()) : $the_query->the_post() $value[] =array( 'post_permalink' => get_permalink() ); endwhile; ?>
Теперь дело в том, что я получаю links
как
Array ( [0] => Array ( [post_permalink] => link ) [1] => Array ( [post_permalink] => link ) [2] => Array ( [post_permalink] => link ) [3] => Array ( [post_permalink] => link ) )
Я хочу, чтобы это было так:
Array ( [post_permalink] => link [post_permalink] => link [post_permalink] => link [post_permalink] => link )
т.е.: все ссылки в одном массиве вместо четырех подмассивов. Пожалуйста помоги!