我正在显示当前页面的子页面列表。但在一个子页面上,我想给出pdf的路径。怎么可能呢?请帮忙。
这是我的代码:
$args = array(
\'child_of\' => get_the_ID(),
\'date_format\' => get_option(\'date_format\'),
\'depth\' => 0,
\'sort_column\' => \'ID\',
\'sort_order\' => \'ASC\',
\'title_li\' => \'\'
); ?>
<?php wp_list_pages( $args ); ?>
输出为-
**current page**
child page1
child page2
child page3 (..it should be link to pdf..)
child page4
child page5
请帮我找出解决方案?