add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 ); function new_loop_shop_per_page( $cols ) { // $cols contains the current number of products per page based on the value stored on Options -> Reading // Return the number of products you wanna show per page. $cols = 8; return $cols; }
闲着没事想把产品数量页面修改下,顺便找了下教程,好家伙网上的没一个是对的。全是旧操作,没办法云速成只能自己动手啦!首先,点击 “自定义主题”,使用上面代码:
把上面代码加入你主题的functions.php
的结尾,那个 “8” 可以改成任意你想要的数量。
当然了也可以直接去修改文件变更,去你所在主题下修改functions.php
文件就可以刻。