我为我正在开发的 WP 网站创建了一个自定义帖子类型 - 推荐信。我想在我的侧边栏中显示一个随机推荐 - 如果可能的话不使用插件。我是否需要使用正确的帖子查询创建文本小部件?如果是这样,它会是什么样子?
非常感谢,
辛西娅
我为我正在开发的 WP 网站创建了一个自定义帖子类型 - 推荐信。我想在我的侧边栏中显示一个随机推荐 - 如果可能的话不使用插件。我是否需要使用正确的帖子查询创建文本小部件?如果是这样,它会是什么样子?
非常感谢,
辛西娅
If you want you can directly paste following code snippet in your sidebar.php
where you want to show the Testimonials
(make sure whether it's testimonials/Testimonials
)
<?php
$args = array(
'post_type'=>'testimonials',
'orderby'=>'rand',
'posts_per_page'=>'1'
);
$testimonials=new WP_Query($args);
while ($testimonials->have_posts()) : $testimonials->the_post();
?>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<p><?php the_excerpt(); // or the_content(); ?></p>
<?php
endwhile;
wp_reset_postdata();
?>