Created
December 21, 2023 06:31
-
-
Save ramzs/04b393e33fe961b2872ecc3502323601 to your computer and use it in GitHub Desktop.
Вывод ссылок на дочерние страницы
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
$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