• I need to get the page ids as numbers or as slugs for the children of a page id.

    how?

    wp_list pages gives me formatted html with permalink.

    i’d like to get the numeric ids, and only the numeric ids.

Viewing 1 replies (of 1 total)
  • Thread Starter crisispictures

    (@crisispictures)

    The answer:

    <?php
    $kids = get_pages(“child_of=$id”);?>
    foreach ($kids as $post) {
    $kinder = get_object_vars($post);
    $kinder = $kinder[ID];
    } ?>

Viewing 1 replies (of 1 total)
  • The topic ‘Get Page ID numbers of children of Page’ is closed to new replies.