web-dev-qa-db-ja.com

ホームページにサムネイルやページの抜粋を表示するにはどうすればいいですか?

ホームページに添付のサムネイルとページの抜粋(約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_substr php関数を使うかもしれません。

すみません、私の英語は苦手です。 :) 手伝ってくれてありがとう!

2
Bits Hcm
<?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  } ?>
0
Balas