This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="application/ld+json"> | |
| { | |
| "@context": "http://schema.org", | |
| "@type": "CollectionPage", | |
| "@id": "https://www.johnscbd.com/collections/cbd-oil-drops/#webpage", | |
| "url": "https://www.johnscbd.com/collections/cbd-oil-drops/", | |
| "name": "CBD Oil in Texas | Best CBD Oil Distributors | John\u2019s CBD", | |
| "inLanguage": "en-US", | |
| "description": "Looking to buy the best CBD oil in Texas? Visit John\u2019s CBD online or store to find high-quality CBD hemp oils for anxiety or pain in Texas. \u2713Lab Tested.", | |
| "hasPart": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "workbench.colorTheme": "Oceanic Next (dimmed bg)", | |
| "files.autoSave": "onFocusChange", | |
| "editor.minimap.enabled": true, | |
| "workbench.statusBar.visible": true, | |
| "workbench.activityBar.visible": true, | |
| "editor.formatOnSave": false, | |
| "workbench.colorCustomizations": { | |
| "statusBar.background": "#333333", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| const { watch, series, src, dest } = require( 'gulp' ); | |
| //css packages | |
| const sass = require( 'gulp-sass' ); | |
| const autoprefixer = require( 'gulp-autoprefixer' ); | |
| //generic package | |
| const sourcemaps = require( 'gulp-sourcemaps' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function auto_update_specific_plugins ( $update, $item ) { | |
| // Array of plugin slugs to always auto-update | |
| $plugins = array ( | |
| 'akismet', | |
| 'buddypress', | |
| ); | |
| if ( in_array( $item->slug, $plugins ) ) { | |
| // Always update plugins in this array | |
| return true; | |
| } else { |