gpt4 book ai didi

wordpress - 将自定义页面模板添加到 bbPress 的 Warp 主题中

转载 作者:行者123 更新时间:2023-12-05 00:03:43 29 4
gpt4 key购买 nike

(这篇文章已经提交到 Yootheme 论坛,但我对解决方案没有那么大的信心,所以我想我也应该把它贴在这里。)

我正在使用 Yoothemes 的 Nano 主题,它对我网站的 90% 都非常有效。 http://dofekit.org但是,我刚刚安装了 bbPress 论坛插件(不是在实时站点上,而是本地版本)并且我创建了 2 个“论坛”。论坛索引页面和所有子页面似乎都被插入到一个标准的 Nano 页面模板中。这不适合论坛,因为它包含页面元信息,而且我看不到关闭论坛的“sidebar-a”的方法,如我的屏幕截图所示。

http://dl.dropbox.com/u/240752/forums.jpg

有没有办法在 yoothemes 框架内为论坛帖子类型创建单独的模板? (我知道它是专有的,但我只能问)

谢谢。

更新:

我是那里的一部分。我已经像这样为我的论坛帖子类型制作了单独的模板,但我仍然需要让自定义帖子类型在小部件设置中得到确认。

我在 warp/systems/wordpress3.0/layouts/content.php 中添加了自定义帖子类型

if (is_home()) {
$content = 'index';
} elseif (is_page()) {
$content = 'page';
} elseif (is_attachment()) {
$content = 'attachment';
} elseif ((is_single()) && (get_post_type() == 'forum')) {
$content = 'forum-single';
}elseif ((is_single()) && (get_post_type() == 'topic')) {
$content = 'topic-single';
} elseif (is_single()) {
$content = 'single';
} elseif (is_search()) {
$content = 'search';
}elseif ((is_archive()) && (get_post_type() == 'forum')) {
$content = 'forum-archive';
} elseif (is_archive() && is_author()) {
$content = 'author';
} elseif (is_archive()) {
$content = 'archive';
} elseif (is_404()) {
$content = '404';
}

我还将这些自定义帖子类型添加到warp/systems/wordpress3.0/config/layouts/fields/profile.php努力让它们出现在每个小部件的下拉列表中。 (我希望能够在这些新的自定义模板上切换小部件。)

$defaults = array(
'home' => 'Home',
'archive' => 'Archive',
'search' => 'Search',
'single' => 'Single',
'page' => 'Pages',
'forum-archive' => 'Forum List',
'forum-single' => 'Forum Single',
'topic-single' => 'Topic Single'
);

有人可以帮忙吗?我想我已经差不多完成了。

最佳答案

对于 single post display 的自定义帖子类型,您应该能够使用 WordPress 模板来处理此问题.

例如,如果您的自定义帖子类型称为“产品”,请创建一个名为 single-product.php 的模板,例如单{post_type}.php

无论 Yoothemes 框架如何,此解决方案都应该有效,如果有效,请告诉我!

关于wordpress - 将自定义页面模板添加到 bbPress 的 Warp 主题中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7672284/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com