mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
4 lines
125 B
Text
4 lines
125 B
Text
add_filter( 'option_et_divi', function( $option ){
|
|
$option['divi_woocommerce_archive_num_posts'] = 6;
|
|
return $option;
|
|
} );
|