如何在Genesis框架中创建显示具有特定类别的帖子的页面模板?

时间:2012-03-30 作者:janoChen

我知道如何创建这种模板。通常,我只是启动一个自定义WordPress循环。但当我检查Genesis框架中的模板文件时,我看到:

page_blog.php:

<?php

/*

 WARNING: This file is part of the core Genesis framework. DO NOT edit

 this file under any circumstances. Please do all modifications

 in the form of a child theme.

 */



/**

 * Template Name: Blog

 * This file handles blog post listings within a page.

 *

 * This file is a core Genesis file and should not be edited.

 *

 * @category Genesis

 * @package  Templates

 * @author   StudioPress

 * @license  http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later)

 * @link     http://www.studiopress.com/themes/genesis

 */

genesis();
这是博客页面,我很困惑。

如何创建一个模板,列出具有特定类别的帖子?

1 个回复
SO网友:Katrina Glover

我不知道您是否找到了解决方案,但这对我来说一直都很有效:

不要编辑已复制代码的文件创建一个新页面(或使用现有页面),并在同一页面底部的“自定义字段”下将其模板设置为Blog,键入query\\u args,然后在“值”下键入cat=CATERGORY

结束

相关推荐

如何在Genesis框架中创建显示具有特定类别的帖子的页面模板? - 小码农CODE - 行之有效找到问题解决它

如何在Genesis框架中创建显示具有特定类别的帖子的页面模板?

时间:2012-03-30 作者:janoChen

我知道如何创建这种模板。通常,我只是启动一个自定义WordPress循环。但当我检查Genesis框架中的模板文件时,我看到:

page_blog.php:

<?php

/*

 WARNING: This file is part of the core Genesis framework. DO NOT edit

 this file under any circumstances. Please do all modifications

 in the form of a child theme.

 */



/**

 * Template Name: Blog

 * This file handles blog post listings within a page.

 *

 * This file is a core Genesis file and should not be edited.

 *

 * @category Genesis

 * @package  Templates

 * @author   StudioPress

 * @license  http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later)

 * @link     http://www.studiopress.com/themes/genesis

 */

genesis();
这是博客页面,我很困惑。

如何创建一个模板,列出具有特定类别的帖子?

1 个回复
SO网友:Katrina Glover

我不知道您是否找到了解决方案,但这对我来说一直都很有效:

不要编辑已复制代码的文件创建一个新页面(或使用现有页面),并在同一页面底部的“自定义字段”下将其模板设置为Blog,键入query\\u args,然后在“值”下键入cat=CATERGORY

相关推荐