本文介绍了在woocommerce商店的第三个产品之后插入div的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在woocommerce商店中使用3列网格
I am using 3 columns grid in woocommerce shop
[] [] []
[] [] []
[] [] []
如何在第三个网格后面插入div
How can I insert a div after the 3rd grid
类似这样的东西
[][][inserted div]
[][][]
[][][]
所以我可以在里面放任何东西,谢谢.
So I can put anything in there, thanks.
推荐答案
从循环脚本加载的所有产品仅启动任何$variable= 0
,并且在加载每个产品$variable incremented by 1
之后检查$variable %3 == 0
,如果成功,则添加div
All the product loaded from a loop script just initiate any $variable= 0
and after every product loaded $variable incremented by 1
and check $variable %3 == 0
if success add the div
$variable = 0;
{ //product loop start
//product load
$variable ++; // variable increment
if($variable%3 == 0){
// Add Div here
}
} //product loop end
这篇关于在woocommerce商店的第三个产品之后插入div的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!