我正在使用 WP RSS聚合器插件来解析供稿网址。
现在我有超过1000个链接要解析类别规范。我该如何批量解析这个网址?目前我通过手动数据(URL)来实现这一点。
期待相关的答案。
感谢。
答案 0 :(得分:0)
function add_query_vars($aVars) {
$aVars[] = "msds_pif_cat"; // represents the name of the product category as shown in the URL
return $aVars;
}
// hook add_query_vars function into query_vars
add_filter('query_vars', 'add_query_vars');
使用此功能