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.
  1. <?php
  2. //get current page ID
  3. $the_id = '14';
  4.  
  5. $args = array(
  6. 'child_of' => $the_id,
  7. 'title_li' => '',
  8. 'parent' => $the_id,
  9. 'sort_order' => 'DESC',
  10. 'sort_column' => 'menu_order'
  11. );
  12.  
  13. $pages = get_pages( $args );
  14.  
  15. $output = '';
  16.  
  17. foreach($pages as $value){
  18.  
  19. $thumb = get_the_post_thumbnail( $value->ID, array(230,299), $attr = 'class=shopthumbnail' );
  20. $output .= "<li>";
  21. $output .= "<a href='" . $value->post_name . "' >" . $thumb . "</a><br />";
  22. $output .= "<a href='" . $value->post_name . "' >" . $value->post_title . "</a>";
  23. $output .= "</li>";
  24. }
  25.  
  26. echo $output;
  27. ?>
  28.  
  29. </ul>

以上是关于WordPress-显示带有缩略图的子页面的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress 图片库缩略图网格 - 点击查看更多

用于在文章页面上显示带有缩略图的摘录

带有简单缩略图的衬垫合身

获取带有静态 html 内容的 wordpress 页面模板以在搜索中显示

带有 ALAsset 缩略图的低清晰度

WordPress自动裁剪768w像素缩略图的解决办法