为自定义帖子类型创建存档:wordpress

Posted

技术标签:

【中文标题】为自定义帖子类型创建存档:wordpress【英文标题】:Create archive for Custom Post Type : wordpress 【发布时间】:2016-08-23 18:29:50 【问题描述】:

我已经为我的自定义帖子类型创建了一个 archive.php

存档-CUSTOM_POSTTYPE.php

我在其中放置了标准循环。

`<?php
get_header();
if (have_posts()) :
while (have_posts()) :
the_post();
the_title();
the_excerpt();
endwhile;
endif;
get_sidebar();
get_footer();
?>`

太棒了!行得通。

我在尝试使用 current_post 时失败了;和found_posts;

当我将它们回显到循环中时,它们没有给我任何值。

实际的存档页面布局要复杂得多,作为使其工作的一部分,我需要 current_post 和 found_post。

任何想法都将不胜感激!

【问题讨论】:

【参考方案1】:

您是否通过引用全局 wp_query 变量来回显 found_posts?如果没有,请尝试:

echo $wp_query->found_posts;

【讨论】:

以上是关于为自定义帖子类型创建存档:wordpress的主要内容,如果未能解决你的问题,请参考以下文章

在 Wordpress 中为自定义帖子类型添加附加页面

WordPress 自定义帖子类型存档-<帖子类型>.php 不起作用

Wordpress - 自定义帖子类型存档页面

使用 Wordpress,我如何创建一个链接到自定义帖子类型存档的新菜单项?

WordPress 自定义帖子类型单一作为存档的父级

Wordpress 在自定义帖子类型存档页面上按日期排序