Skip to content

Instantly share code, notes, and snippets.

@ramzs
Created December 21, 2023 06:31
Show Gist options
  • Save ramzs/04b393e33fe961b2872ecc3502323601 to your computer and use it in GitHub Desktop.
Save ramzs/04b393e33fe961b2872ecc3502323601 to your computer and use it in GitHub Desktop.
Вывод ссылок на дочерние страницы
<?
$idp = get_the_ID();
$args = ( [
'child_of' => $idp,
'date_format' => get_option('date_format'),
'depth' => 1,
'echo' => 1,
'exclude' => '',
'exclude_tree' => '',
'include' => '',
'number' => '16',
'offset' => '',
'post_type' => 'page', // см. get_pages()
'sort_column' => 'menu_order, post_title',
'sort_order' => 'ASC',
'title_li' => ''
] );
?>
<? wp_list_pages( $args ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment