创建一个名为Testimonials 然后,在主题文件夹中添加一个名为testimonials.php.
将其添加到新创建的文件中:
<div id="testimonials">
<?php $args = array(\'caller_get_posts\' => 1, \'post_type\' => \'testimonials\', \'post_status\' => \'publish\', \'posts_per_page\' => 5);
query_posts($args);
if (have_posts()) : while (have_posts()) : the_post();
$image = get_post_meta($post->ID, \'testimonial-image\', true);
?>
<div class="testimonail">
<img src="<?php echo $image; ?>" width="" height="" alt="<?php the_title(); ?>" />
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</div>
<?php endwhile; else : endif; ?>
</div>
然后添加您希望在何处显示推荐信。示例页脚。php
现在,您只需添加一个新帖子并在Testimonials 类别对于图像,创建一个名为testimonial-image 对于值,添加图像的路径(例如:http://example.com/image.png).
你可以走了。