这与Wordpress Visual Composer,WP-Bakery等有关。
我在WP页面中有一个片段,可将所有事件呈现为平铺显示。我想将此输出限制为3个结果,但我不确定要使用哪个短代码,因为我无法在WP VisualComposer&#39上的短代码文档中找到限制或类似内容的网站。我已经尝试过limit =" 3",Total_items =" 3"以及我以前见过的所有其他内容。
[events grid =" 3"视图="所有"起始日期=""]
答案 0 :(得分:0)
Visual Composer使用WP_Query
https://developer.wordpress.org/reference/functions/query_posts/
您可以通过http_build_query转换为短代码并找出要使用的内容。
将此添加到您的查询中:
&posts_per_page=3
与PHP中的相同:
'posts_per_page' => 3