ฝังเนื้อหาของ page ลงใน theme
เพิ่มโค้ดนี้ลงในไฟล์ php
<?php $recent = new WP_Query("page_id=22"); while($recent->have_posts()) : $recent->the_post();?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
ฝังเนื้อหาของ page ลงใน theme
เพิ่มโค้ดนี้ลงในไฟล์ php
<?php $recent = new WP_Query("page_id=22"); while($recent->have_posts()) : $recent->the_post();?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>