WordPress中模板重用的访问请求URI

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress中模板重用的访问请求URI相关的知识,希望对你有一定的参考价值。

Easy way to access request URI to WP in order to not repeat whole templates for minor changes
  1. <?php
  2. switch ($wp->request) {
  3. case 'directory':
  4. get_template_part('content', 'directory');
  5. break;
  6. case 'history':
  7. get_template_part('content', 'history');
  8. break;
  9. default: get_template_part('content', 'default');
  10. };
  11. ?>

以上是关于WordPress中模板重用的访问请求URI的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress:访问存储在主题文件夹中子文件夹中的模板

在 .NET RemotingServices 中重用对象 URI

“请求中的 URI 无效”尝试代理 iframe 内容以进行本地调试

将 PHP 页面添加到 Wordpress 模板

Velocity (VM) 模板请求参数:获取 GET 变量

Flask之模板之特殊变量和方法