I'm clearly doing something totally daft as I can't get the following code to work:
That does not display page IDs/titles ordered by ID's when I use it in a theme.PHP Code:<?php
$pages = get_pages( 'orderby=ID' );
foreach ($pages as $pagg) {
echo $pagg->ID . '|' .$pagg->post_title . '<br />';
}
?>
Any ideas on what on earth I'm doing wrong? This is driving me nuts!
Thanks :)


LinkBack URL
About LinkBacks
Reply With Quote
