WooCommerce 属性的 WordPress URL 重写 [英] WordPress URL rewrite for WooCommerce attributes

查看:27
本文介绍了WooCommerce 属性的 WordPress URL 重写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用 WooCommerce 和YITH WooCommerce Ajax 导航"插件来过滤品牌.结果是显示为 https://example.com/products/racquets/tennis-racquets/?filter_brands=47 的链接理想情况下,我想改用 https://example.com/products/racquets/tennis-racquets/brands/wilson.

I'm using WooCommerce with the "YITH WooCommerce Ajax Navigation" plugin to filter brands. The result is a link that appears as https://example.com/products/racquets/tennis-racquets/?filter_brands=47 Ideally, I would like to use https://example.com/products/racquets/tennis-racquets/brands/wilson instead.

我尝试过使用 Apache mod_rewrite 规则,例如:

I've tried using an Apache mod_rewrite rule such as:

RewriteRule ^products/racquets/tennis-racquets/?filter_brands=47 /products/racquets/tennis-racquets/wilson [QSA,L]

我也试过为我的 functions.php 文件编写一个函数,但似乎也没有找到.这是我尝试使用的代码示例.

I've also tried writing a function for my functions.php file but that doesn't seem to catch either. Here's a sample of the code I tried using.

function brand_rewrite_rules() {
    add_rewrite_rule( 'products/racquets/tennis-racquets/?filter_brands=47', 'products/racquets/tennis-racquets/wilson', 'top' );
    flush_rewrite_rules();
} 
add_action( 'init', 'brand_rewrite_rules' );

我确实尝试更新我的永久链接设置,但该功能没有做任何事情.任何人都可以为此提出解决方案吗?

I did try updating my permalink settings but the function did not do anything. Can anyone propose a solution for this?

推荐答案

这是添加一个重写端点的问题:

添加端点为提供的位掩码指定的每个匹配位置创建额外的重写规则.还将创建一个与端点同名的新查询变量.端点定义后面的字符串提供此查询变量的值(例如,"/foo/bar/" 变为 "?foo=bar").

Adding an endpoint creates extra rewrite rules for each of the matching places specified by the provided bitmask. A new query var with the same name as the endpoint will also be created. The string following the endpoint definition supplies the value for this query var (e.g. "/foo/bar/" becomes "?foo=bar").

<?php
/**
 * Plugin Name: Add a Brand endpoint to the URLs
 * Plugin URI:  http://stackoverflow.com/a/24331768/1287812
 */

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

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

/**
 * Refresh permalinks on plugin activation
 * Source: http://wordpress.stackexchange.com/a/108517/12615 
 */
function WCM_Setup_Demo_on_activation()
{
    if ( ! current_user_can( 'activate_plugins' ) )
        return;

    $plugin = isset( $_REQUEST['plugin'] ) ? $_REQUEST['plugin'] : '';
    check_admin_referer( "activate-plugin_{$plugin}" );

    add_rewrite_endpoint( 'brands', EP_ALL ); #source: http://wordpress.stackexchange.com/a/118694/12615
    flush_rewrite_rules();
}
register_activation_hook(   __FILE__, 'WCM_Setup_Demo_on_activation' );

然后,在模板中使用它:

Then, in the templates use it like:

$brand = get_query_var('brand') ? urldecode( get_query_var('brand') ) : 'Empty endpoint';
echo $brand;

这篇关于WooCommerce 属性的 WordPress URL 重写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆