PHP WordPress - 显示带缩略图的子页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP WordPress - 显示带缩略图的子页面相关的知识,希望对你有一定的参考价值。

<?php
//get current page ID
$the_id = '14';

$args = array(
'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){

	$thumb = get_the_post_thumbnail( $value->ID, array(230,299), $attr = 'class=shopthumbnail' );
	$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>

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

php WordPress中有缩略图的相关帖子(无插件)#wp #php

wordpress4.4+版本自动生成一个768w像素缩略图的解决办法

wordpress后台启用自带的图片缩略功能

PHP Wordpress:在RSS Feed中显示帖子缩略图

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

从youtube嵌入缩略图和视频(php - Wordpress)