问题描述

如何在固定链接之后添加额外的参数,具体来说,如果我使用自定义的帖子类型?

例如,让我们说 http://mysite/album/record-name 是永久链接。如何使 http://mysite/album/record-name/related 不会变成 404 或重定向?

如果帖子不存在,WordPress 似乎没有调用帖子模板… 所以我有点失落如何做到这一点。

最佳解决方案

您可以向 URI 添加一个端点来处理特殊请求。

这是插件的一个基本示例。了解发生了什么事 Christopher Davis 的梦幻教程 A (Mostly) Complete Guide to the WordPress Rewrite API

<?php # -*- coding: utf-8 -*-
/**
 * Plugin Name: T5 Endpoint Example
 * Description: Adds a permalink endpoint to posts named <code>epex</code>
 */

add_action( 'init', 't5_add_epex' );

function t5_add_epex()
{
    add_rewrite_endpoint( 'epex', EP_PERMALINK );
}

add_action( 'template_redirect', 't5_render_epex' );

/**
 * Handle calls to the endpoint.
 */
function t5_render_epex()
{
    if ( ! is_singular() or ! get_query_var( 'epex' ) )
    {
        return;
    }

    // You will probably do something more productive.
    $post = get_queried_object();
    print '<pre>' . htmlspecialchars( print_r( $post, TRUE ) ) . '</pre>';
    exit;
}


add_filter( 'request', 't5_set_epex_var' );

/**
 * Make sure that 'get_query_var( 'epex' )' will not return just an empty string if it is set.
 *
 * @param  array $vars
 * @return array
 */
function t5_set_epex_var( $vars )
{
    isset( $vars['epex'] ) and $vars['epex'] = true;
    return $vars;
}

次佳解决方案

您可以使用 Rewrite APIadd_rewrite_endpoint

add_action( 'init', 'wpse51444_endpoint' );
function wpse51444_endpoint(){
    add_rewrite_endpoint( 'related', EP_ALL );
}

add_filter( 'query_vars', 'wpse51444_query_vars' );
function wpse51444_query_vars( $query_vars ){
    // add related to the array of recognized query vars
    $query_vars[] = 'related';
    return $query_vars;
}

在模板中,您可以检测何时存在相关的查询 var:

if( array_key_exists( 'related' , $wp_query->query_vars ) ):
    // current request ends in related
endif;

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。