Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/inc/integrations/qubely.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <?php
2 +
3 + add_filter('qubely_container_width', function () {
4 + return array(
5 + 'sm' => 480,
6 + 'md' => 690,
7 + 'lg' => 1000,
8 + 'xl' => 1200
9 + );
10 + });
11 +
12 + add_action('after_switch_theme', function () {
13 + do_action('qubely_active_theme_preset');
14 + });
15 +
16 +