WordPress 自定义帖子类型 Single.php?

发布于 2024-09-27 12:40:06 字数 587 浏览 1 评论 0原文

我有一个 WordPress 自定义帖子类型设置。我已经创建了

single-[customposttype].php 

但是,它不是仅显示请求的自定义帖子类型,而是转到 URL,然后显示自定义类型中的所有帖子。

这是我当前使用的代码的副本:

    <?php query_posts("post_type=shorts"); while (have_posts()) : the_post(); ?>

<div class="header-promo">
    <?php echo get_post_meta($post->ID, "mo_short_embed", true); ?>
</div>
<div class="content-details">   
    <h1><?php the_title(); ?></h1>
    <?php the_content(); ?>
</div>

<?php endwhile; ?>

提前致谢:)

I have a WordPress custom post-type setup. I've created

single-[customposttype].php 

However instead of displaying only the requested custom-post-type it goes to the URL, then displays all of the posts in the custom-type.

Here's a copy of the code i'm currently using:

    <?php query_posts("post_type=shorts"); while (have_posts()) : the_post(); ?>

<div class="header-promo">
    <?php echo get_post_meta($post->ID, "mo_short_embed", true); ?>
</div>
<div class="content-details">   
    <h1><?php the_title(); ?></h1>
    <?php the_content(); ?>
</div>

<?php endwhile; ?>

Thanks in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蝶舞 2024-10-04 12:40:06

答案是删除

query_posts("post_type=shorts");

这只需要拉入自定义帖子类型的多个帖子,例如创建档案样式页面。

Answer was to remove

query_posts("post_type=shorts");

This is only needed for pulling in multiple posts of a custom-post-types, e.g. to create an Archives-style page.

泅渡 2024-10-04 12:40:06

尝试添加“posts_per_page”并将其设置为 1。

query_posts(
 'post_type' => 'shorts',
 'posts_per_page' => 1
)

Try adding a "posts_per_page" and setting it to 1.

query_posts(
 'post_type' => 'shorts',
 'posts_per_page' => 1
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文