在2019年主题的类别档案页面中显示完整帖子

时间:2019-02-04 作者:jdias

我用的是2019主题。它仅显示类别存档页面中的摘录。我想展示完整的帖子。

我创建了一个子主题并复制了文件归档。php到子文件夹。

它有以下说明。

* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
get_template_part( \'template-parts/content/content\', \'excerpt\' );
我不知道在这里该怎么办。

我尝试将此文件重命名为内容存档。php并替换行“get\\u template\\u part…”使用“the\\u content();”

什么都没发生。

有什么建议吗?

谢谢

1 个回复
SO网友:Jeremiah Henry

存档中。php,将此行(36)更改为

get_template_part( \'template-parts/content/content\', \'excerpt\' );
到这个

get_template_part( \'template-parts/content/content\', \'content\' );

相关推荐

Displaying Archives List

我正在使用显示列表或档案<?php get_archives(\'monthly\', \'\', \'html\', \'\', \'\', FALSE); ?> 并显示我的列表2012年12月-2012年11月等但是,我想将其格式化以显示:12.1211.1210.12等有什么想法吗?