我正在自定义WooCommerce变体字段下拉列表,遇到了在变体名称旁边包含变体图像的问题。
我尝试在数组中包含'attribute'=> $ image,但这没有用。
这是我正在处理的代码
> m
[,1] [,2]
[1,] 1 3
[2,] 2 4
> n
[,1] [,2]
[1,] 5 7
[2,] 6 8
> is.matrix(m)
[1] TRUE
> is.matrix(n)
[1] TRUE
> str(m)
List of 4
$ : num 1
$ : num 2
$ : num 3
$ : num 4
- attr(*, "dim")= int [1:2] 2 2
> str(n)
List of 4
$ : num 5
$ : num 6
$ : num 7
$ : num 8
- attr(*, "dim")= int [1:2] 2 2
> m*n
Error in m * n : non-numeric argument to binary operator
> m%*%n
Error in m %*% n : requires numeric/complex matrix/vector arguments
>
该想法是在变体名称左侧显示变体图像的小预览。
例如下面的屏幕截图:
任何帮助表示赞赏。