WordPress-显示带有缩略图的子页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress-显示带有缩略图的子页面相关的知识,希望对你有一定的参考价值。
Takes the ID of a page, then displays a list of child pages with thumbnails and page titles. The thumbnail is generated from the 'featured image' of the particular child page.
<?php //get current page ID $the_id = '14'; 'child_of' => $the_id, 'title_li' => '', 'parent' => $the_id, 'sort_order' => 'DESC', 'sort_column' => 'menu_order' ); $pages = get_pages( $args ); $output = ''; foreach($pages as $value){ $output .= "<li>"; $output .= "<a href='" . $value->post_name . "' >" . $thumb . "</a><br />"; $output .= "<a href='" . $value->post_name . "' >" . $value->post_title . "</a>"; $output .= "</li>"; } echo $output; ?> </ul>
以上是关于WordPress-显示带有缩略图的子页面的主要内容,如果未能解决你的问题,请参考以下文章