我正在尝试更改添加变量(产品品牌)的标题标签,但变量未显示。
pd.merge_asof(
event_table, interval_table,
left_on='timestamp', right_on='start_utc'
).drop(['end_utc', 'start_utc'], 1)
也尝试了这个,但没有运气
{{1}}
答案 0 :(得分:0)
我假设您的网址包含参数.com/?product-brand=foo
。确保已为过滤器添加了优先级。这应该可以做到!
add_filter('wpseo_title', 'filter_product_wpseo_title', 10, 1);
function filter_product_wpseo_title($title) {
$title = 'hello '. $_GET['product-brand'] .' hello';
return $title;
}