我有一家woocommerce商店,该商店带有产品评分过滤器。
一些评论(按星级评分)已回复。但是,当我通过“评估”元键进行过滤时,孩子们不再满足该查询要求。
我需要按“评分”进行过滤,但还要包括那些孩子。
有什么想法吗?
aviv@saddleback: demo $ ./exec_other ls -l
total 120
-rwxr-x--- 1 aviv scs 9890 Feb 24 14:13 exec_other
-rw-r----- 1 aviv scs 151 Feb 24 11:43 exec_other.c
-rwxr-x--- 1 aviv scs 9977 Feb 24 14:13 execv_ls-l
-rw-r----- 1 aviv scs 559 Feb 24 11:42 execv_ls-l.c
-rwxr-x--- 1 aviv scs 9979 Feb 24 14:13 execvp_ls-l
-rw-r----- 1 aviv scs 360 Feb 24 11:59 execvp_ls-l.c
-rw-r----- 1 aviv scs 559 Feb 24 11:58 execvp_ls-l.c~
-rwxr-x--- 1 aviv scs 10023 Feb 24 14:13 first_fork
-rw-r----- 1 aviv scs 532 Feb 23 08:06 first_fork.c
-rwxr-x--- 1 aviv scs 10345 Feb 24 14:13 fork_exec_wait
-rw-r----- 1 aviv scs 1158 Feb 23 08:06 fork_exec_wait.c
-rwxr-x--- 1 aviv scs 10278 Feb 24 14:13 get_exitstatus
-rw-r----- 1 aviv scs 1379 Feb 23 08:06 get_exitstatus.c
-rwxr-x--- 1 aviv scs 9985 Feb 24 14:13 get_pid_ppid
-rw-r----- 1 aviv scs 294 Feb 23 08:06 get_pid_ppid.c
-rw-r----- 1 aviv scs 99 Feb 23 08:06 Makefile
aviv@saddleback: demo $ ./exec_other cat exec_oth
exec_other exec_other.c
aviv@saddleback: demo $ ./exec_other cat exec_other.c
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
int main(int argce, char * argv[]){
execvp( (argv+1)[0], argv+1);
perror("execvp");
}