| @@ -29,9 +29,9 @@ | ||
| 29 | 29 | wp_enqueue_script('waypoint', BLOCKSPARE_PLUGIN_URL . 'src/assets/js/countup/waypoints.min.js', array('jquery'), '', true); |
| 30 | 30 | wp_enqueue_script('jquery-masonry'); |
| 31 | 31 | |
| 32 | 32 | wp_enqueue_script('blockspare-script', BLOCKSPARE_PLUGIN_URL . 'src/assets/js/frontend.js', array('jquery', 'waypoint', 'countup'), '', true); |
| 33 | - | |
| 33 | + wp_enqueue_script('blockspare-tabs', BLOCKSPARE_PLUGIN_URL . 'src/assets/js/tabs.js', array('jquery'), '', true); | |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | add_action('init', 'blockspare_blocks_block_assets'); |
| 37 | 37 | |
| @@ -90,9 +90,12 @@ | ||
| 90 | 90 | 'srcUrl' => untrailingslashit(plugins_url('/', BLOCKSPARE_BASE_DIR . '/dist/')), |
| 91 | 91 | 'rest_url' => esc_url(rest_url()), |
| 92 | 92 | 'img' => $blockspare_priview_img_url, |
| 93 | 93 | 'menu_img_url' => $blockspare_food_img_url, |
| 94 | - 'taxonomies'=> json_encode($txnm) | |
| 94 | + 'taxonomies'=> json_encode($txnm), | |
| 95 | + 'config' => '', | |
| 96 | + 'configuration' => '', | |
| 97 | + 'settings' => '', | |
| 95 | 98 | ) |
| 96 | 99 | ); |
| 97 | 100 | } |
| 98 | 101 | |
| @@ -109,8 +112,9 @@ | ||
| 109 | 112 | //Load Gutenberg Block php Files |
| 110 | 113 | include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/social-sharing/index.php'); |
| 111 | 114 | include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/latest-posts-grid/index.php'); |
| 112 | 115 | include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/latest-posts-list/index.php'); |
| 116 | + //include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/pattern/pattern.php'); | |
| 113 | 117 | |
| 114 | 118 | |
| 115 | 119 | } |
| 116 | 120 | |
| @@ -122,7 +126,10 @@ | ||
| 122 | 126 | function blockspare_enqueue_admin_style() |
| 123 | 127 | { |
| 124 | 128 | wp_enqueue_style('slick', BLOCKSPARE_PLUGIN_URL . 'src/assets/slick/css/slick.css', array(), '', 'all'); |
| 125 | 129 | } |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 126 | 133 | |
| 127 | 134 | |
| 128 | 135 | |