Wordpress匹配自定义内容的网址没有帖子或页面

时间:2013-12-16 18:01:08

标签: php wordpress

我是wordpress的新手。

我想使用两个表并显示一些内容而不创建页面或帖子。

匹配的网址将是这样的:

/[category]/[image] - /nature/green-tree

我的方法是从主题中检查index.php中的url并拆分网址并为图库创建一个迷你路由系统。但我认为这不是最明智的想法。 我不想使用gallery插件,因为我已经使用了一个,这是我需要做的改变。 这样做的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

我想你需要自定义重写规则。以下是您可以自己完成的方法。

如果您正在使用主题,请打开functions.php文件并输入以下代码,否则如果您使用的是插件,请将此代码放在插件中的某个位置,但要确保它立即加载。

function registerCustomUrl($rewrite)
{
    $rewrites       =   $rewrite->rules;
    $newRewrites    =   array();

    $newRewrites['([^/]+)/([^/]+)/?$']  =   'index.php?gallery_category=$matches[1]&gallery_image=$matches[2]';

    foreach($rewrites as $rk => $rv)
    {
        $newRewrites[$rk]   =   $rv;
    }

    $rewrite->rules =   $newRewrites;
}
add_action('generate_rewrite_rules',    'registerCustomUrl');

function registerCustomQueryVars( $vars ) {
    $vars[] = 'gallery_category';
    $vars[] = 'gallery_image';
    return $vars;
}
add_filter('query_vars',    'registerCustomQueryVars');

function myCustomTemplateRedirect()
{
    global $wp_query;

    if(
        isset($wp_query->query_vars['gallery_category']) &&
        !empty($wp_query->query_vars['gallery_category']) &&
        isset($wp_query->query_vars['gallery_image']) &&
        !empty($wp_query->query_vars['gallery_image'])
    )
    {
    // Within your custom template file you are able to
        // use any theme function like the get_header(), get_footer(), etc
        require_once('path/to/your/custom/template/file.php');
        exit(0);
    }
}
add_action("template_redirect", 'myCustomTemplateRedirect');