gpt4 book ai didi

php - Wordpress - 首先查询自定义帖子类型的名称

转载 作者:行者123 更新时间:2023-11-29 03:15:46 25 4
gpt4 key购买 nike

我想使用自定义帖子类型元数据框查询名字和姓氏。

我正在使用的代码:

$name = 'John Doe';

$args = array(
'post_type' => 'customers',
'post_status' => array( 'publish', 'pending', 'draft' ),
'numberposts' => -1,
'order' => 'ASC',
'orderby' => 'meta_value',
'meta_key' => 'customer_first_name'
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'customer_first_name',
'value' => $name,
'compare' => 'LIKE',
),
array(
'key' => 'customer_last_name',
'value' => $name,
'compare' => 'LIKE',
),
),
);

$customers = get_posts($args);

$num = count( $customers );

如果我只搜索“John”,结果就会出现。如果我搜索全名“John Doe”,则没有任何结果。这是为什么?

最佳答案

当然它不会显示任何结果,因为您没有拆分姓名的名字和姓氏。

$name = 'John Doe';
$parts = explode(" ", $name);
$first_name = $parts[0];
$last_name = (count($name) > 1) ? $name[count($name)-1]: $first_name;
$args = array(
'post_type' => 'customers',
'post_status' => array( 'publish', 'pending', 'draft' ),
'numberposts' => -1,
'order' => 'ASC',
'orderby' => 'meta_value',
'meta_key' => 'customer_first_name',
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'customer_first_name',
'value' => $first_name,
'compare' => 'LIKE',
),
array(
'key' => 'customer_last_name',
'value' => $last_name,
'compare' => 'LIKE',
),
),
);

$customers = get_posts($args);

$num = count( $customers );

和国际名字一样,如果姓氏为空,那么姓氏也将使用名字。

关于php - Wordpress - 首先查询自定义帖子类型的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57348810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com