Sorry, but my english is very poor. I will try explining again …
Iam into a loop for running all post with one concrete category.
I have this:
$postID = get_the_ID();
And I print this:
echo $postID[0];
(My ID’s are 50, 60 & 70)But I obtain:
50, 5060 , 506070
I need obtain 50, 60 & 70. Separatelly.
I would need create an array for can print this values separetly. For example like this:
[0]= 50
[1]= 60
[2]= 70
Do you understand me?
Im really gratefully.
Chears