如何在主页上显示页面的缩略图和摘录?

时间:2012-11-14 作者:Bits Hcm

如何在主页上显示附加的缩略图和页面摘录(约200字)?

<?php 
$page_data = get_page( 401 ); // Get page ID 401
echo \'<h3>\'. $page_data->post_title .\'</h3>\';
echo apply_filters(\'the_content\', $page_data->post_content);
?>
我不知道如何将附加图像显示为缩略图。可能是我使用mb\\u substr php函数将内容剪切到摘录中。

对不起,我的英语不好。:)谢谢你的帮助!

1 个回复
最合适的回答,由SO网友:Balas 整理而成
<?php $post_id = 50; // assign post id
                $queried_post = get_page($post_id);
                if(is_home()) {  ?>
                <div class=\'product_title\'><h3><a href="<?php echo get_page_link($post_id); ?>"><?php echo $queried_post->post_title;  ?></a></h3></div>                    
                <div class=\'product_image_location\'><?php echo get_the_post_thumbnail( $post_id); ?></div>
                <div class=\'description_product\'>
                <?php echo $queried_post->post_content;  ?></div>
            <?php  } ?>
结束

相关推荐

Subpages Permalinks Issues

我的网站看起来像:Page-1 (page.php)。。。Subpage-1 (custom-collection.php; 自定义帖子类型)。。。。。。Filtering Output-Post (custom-collection-single.php)当我使用打开过滤输出帖子时/%postname% 对于permalinks,我得到404错误页。一些代码:custom-collection.php<?php $args = array( \'post_type\' => \'weine\