| @@ -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 | - wp_enqueue_script('blockspare-tabs', BLOCKSPARE_PLUGIN_URL . 'src/assets/js/tabs.js', array('jquery'), '', true); | |
| 33 | + | |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | add_action('init', 'blockspare_blocks_block_assets'); |
| 37 | 37 | |
| @@ -70,20 +70,8 @@ | ||
| 70 | 70 | $blockspare_priview_img_url = BLOCKSPARE_PLUGIN_URL . 'dist/images/blockspare-placeholder-img.jpg'; |
| 71 | 71 | $blockspare_food_img_url = BLOCKSPARE_PLUGIN_URL . 'src/assets/blockspare-placeholder-img-square.jpg'; |
| 72 | 72 | |
| 73 | 73 | |
| 74 | - $taxonomies = get_categories(); | |
| 75 | - $txnm = array(); | |
| 76 | - | |
| 77 | - foreach( $taxonomies as $type ) { | |
| 78 | - | |
| 79 | - | |
| 80 | - $txnm[] = array( | |
| 81 | - 'label' => $type->name, | |
| 82 | - 'value' => $type->term_id, | |
| 83 | - ); | |
| 84 | - } | |
| 85 | - | |
| 86 | 74 | wp_localize_script( |
| 87 | 75 | 'blockspare-blocks-block-js', |
| 88 | 76 | 'blockspare_globals', |
| 89 | 77 | array( |
| @@ -89,13 +77,9 @@ | ||
| 89 | 77 | array( |
| 90 | 78 | 'srcUrl' => untrailingslashit(plugins_url('/', BLOCKSPARE_BASE_DIR . '/dist/')), |
| 91 | 79 | 'rest_url' => esc_url(rest_url()), |
| 92 | 80 | 'img' => $blockspare_priview_img_url, |
| 93 | - 'menu_img_url' => $blockspare_food_img_url, | |
| 94 | - 'taxonomies'=> json_encode($txnm), | |
| 95 | - 'config' => '', | |
| 96 | - 'configuration' => '', | |
| 97 | - 'settings' => '', | |
| 81 | + 'menu_img_url' => $blockspare_food_img_url | |
| 98 | 82 | ) |
| 99 | 83 | ); |
| 100 | 84 | } |
| 101 | 85 | |
| @@ -112,9 +96,8 @@ | ||
| 112 | 96 | //Load Gutenberg Block php Files |
| 113 | 97 | include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/social-sharing/index.php'); |
| 114 | 98 | include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/latest-posts-grid/index.php'); |
| 115 | 99 | include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/latest-posts-list/index.php'); |
| 116 | - //include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/pattern/pattern.php'); | |
| 117 | 100 | |
| 118 | 101 | |
| 119 | 102 | } |
| 120 | 103 | |
| @@ -126,10 +109,7 @@ | ||
| 126 | 109 | function blockspare_enqueue_admin_style() |
| 127 | 110 | { |
| 128 | 111 | wp_enqueue_style('slick', BLOCKSPARE_PLUGIN_URL . 'src/assets/slick/css/slick.css', array(), '', 'all'); |
| 129 | 112 | } |
| 130 | - | |
| 131 | - | |
| 132 | - | |
| 133 | 113 | |
| 134 | 114 | |
| 135 | 115 | |