Problem change categories in Homepage
-
I want to change the categories that appear on the main page. Now the categories are sorted by name, and I want to output 3 categories, which I will force myself. This code does not help me:
add_filter( 'storefront_product_categories_shortcode_args', 'royalnight_test_category_homepage' ); function royalnight_test_category_homepage() { $shortcode_content = array( 'number' => 3, 'columns' => 3, 'ids' => '9, 205, 71', ); return $shortcode_content; }
What am I doing wrong?
The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Problem change categories in Homepage’ is closed to new replies.