最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

woocommerce offtopic - Absolute search against wordpress api

programmeradmin2浏览0评论

I am using the below to search to check if a product category is already created

$params = [
    'search' => "category1"
];
$searchedparaCat = $woocommerce->get('products/categories', $params);

using

This works however it seems to do searches as 'like' instead of absolute. For example the above could return

"category11", "category14", "category14552"....

What I need really is an absolute search so that it will ONLY return a category with the give search term as its slug. Is this possible? I know I can iterate over the returned results and filter them but before I go down that route can this be done via the api?

I am using the below to search to check if a product category is already created

$params = [
    'search' => "category1"
];
$searchedparaCat = $woocommerce->get('products/categories', $params);

using https://github/woocommerce/wc-api-php

This works however it seems to do searches as 'like' instead of absolute. For example the above could return

"category11", "category14", "category14552"....

What I need really is an absolute search so that it will ONLY return a category with the give search term as its slug. Is this possible? I know I can iterate over the returned results and filter them but before I go down that route can this be done via the api?

Share Improve this question asked May 28, 2019 at 20:25 DevWithZacharyDevWithZachary 1033 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Searches are always fuzzy, not exact. You might be looking for the slug parameter here. From the documentation, it reads Limit result set to resources with a specific slug.

I assume it should fit your case and it would only return the categories that match the slug provided.

发布评论

评论列表(0)

  1. 暂无评论