if i have 3 Ids like
$page1 = get_option('home_page_field');
$page2 = get_option('home_page_field1');
$page3 = get_option('home_page_field2');
$page4 = get_option('home_page_field3');
$arrData = array( $page1, $page2 , $page3 );
its giving o/p as
Array ( [0] => Array ( [text_string] => 2 ) [1] => Array ( [text_string] => 499 ) [2] => Array ( [text_string] => 869 ) )
how can i set get_pages function to get the all info about the pages with these pages ids with me
PLease help Thanks
See: http://codex.wordpress.org/Function_Reference/get_page
Try this out
I have used this is the past and found it quite helpful, because you get all the content of the pages:
Different variations of this has helped me out a lot in the past – let me know if it does what you need!
-Alyssa