1

我对 wordpress 很陌生,对如何为 wordpress 自定义模板创建自定义 url 重写感到困惑。我也尝试在谷歌上找到它,但没有运气。我找不到合适的解决方案。

这是我当前的 url 结构:

http://example.com/chiptuning/search/?brand=Audi

使用自定义 url 重写我想将其转换为

http://example.com/chiptuning/search/brand/audi

或者它可能是

http://example.com/chiptuning/search/Audi

还请提及在哪里放置代码。

更新

@Mike Lewis 提供的答案已经被我使用,但它没有提供我正在寻找的东西,无论如何感谢@Mike Lewis 的回复。

还有人对这个问题有什么建议吗?我需要它,请快点。

提前谢谢。

4

1 回答 1

3

WordPress 在查找要使用的模板文件方面发挥了自己的作用。如果您了解重写规则,可以查看以下页面:

或者,这里有一些更简单的解决方案:

使用分层页面

site.com/page1/子页面/子页面/

您必须使用浏览器通过 /wp-admin/ 添加页面,然后您可以在其中设置其父页面。您还可以选择要使用的特定模板(PHP 主题文件)(请参阅:主题开发并向下滚动到自定义页面模板)。

使用分层类别

您还可以使用分层类别来标记帖子,然后在类别存档页面上列出它们。例如:

您可以拥有 site.com/category/brand/audi/(请注意,您可以在 wordpress 设置中更改此网址的“类别”基本部分)。

您可以为各种标签存档页面创建模板文件:category-brand.php 将为site.com/category/brand/url 加载,category-audi.php 将为site.com/category/brand/audi/url 加载。

注意:根据您的网站需要的动态程度,您可能需要跳过使用 category-{tag}.php,这样它就可以使用通用 category.php。在这种情况下,我相信上述两个 url 都会使用通用 category.php(在没有更具体的模板文件的情况下 -模板层次结构向下滚动以查看模板层次结构图)。

这将使您不必为每个单独的标签创建单独的文件。使用 get_query_var() 方法获取特定的类别标签。

最后但并非最不重要的

如果您仍然感到困惑,还有另一种方法可以对 url 进行切片和切块,而无需使用重写规则。BuddyPress(wordpress 的插件)有一个功能,可以将 url 分成几部分(/one/two/three/),然后在 PHP 中使用它们。我不确定这是如何工作的,但如果你想看看,你可以谷歌/下载 BuddyPress,然后查看buddypress/bp-core/bp-core-catchuri.php文件。

这是文档块:

/**
 * Analyzes the URI structure and breaks it down into parts for use in code.
 * BuddyPress can use complete custom friendly URI's without the user having to
 * add new re-write rules. Custom components are able to use their own custom
 * URI structures with very little work.
 *
 * @package BuddyPress Core
 * @since BuddyPress (1.0)
 *
 * The URI's are broken down as follows:
 *   - http:// domain.com / members / andy / [current_component] / [current_action] / [action_variables] / [action_variables] / ...
 *   - OUTSIDE ROOT: http:// domain.com / sites / buddypress / members / andy / [current_component] / [current_action] / [action_variables] / [action_variables] / ...
 *
 *  Example:
 *    - http://domain.com/members/andy/profile/edit/group/5/
 *    - $bp->current_component: string 'xprofile'
 *    - $bp->current_action: string 'edit'
 *    - $bp->action_variables: array ['group', 5]
 *
 */
function bp_core_set_uri_globals() {
于 2012-11-07T22:39:54.523 回答