Consider supporting my work by purchasing the course this tutorial is a part of i.e. VSCode Power User →
- Make sure your
Local by FlyWheelWordPress install is a custom install
Consider supporting my work by purchasing the course this tutorial is a part of i.e. VSCode Power User →
Local by FlyWheel WordPress install is a custom install| ( function( blocks, element ) { | |
| var el = element.createElement; | |
| function Stars( { stars } ) { | |
| return el( 'div', { key: 'stars' }, | |
| '★'.repeat( stars ), | |
| ( ( stars * 2 ) % 2 ) ? '½' : '' ); | |
| } | |
| blocks.registerBlockType( 'stars/stars-block', { |
| jQuery(document).ready(function($){ | |
| if (wp.media) { | |
| wp.media.view.Modal.prototype.on('open', function() { | |
| console.log('media modal open'); | |
| }); | |
| } | |
| }); |
| { | |
| "repositories": [ | |
| { | |
| "type": "composer", | |
| "url": "http://wpackagist.org" | |
| }, | |
| { | |
| "type": "package", | |
| "package": { | |
| "name": "advanced-custom-fields/advanced-custom-fields-pro", |
| /** | |
| * file: wdsjQuery.js | |
| * | |
| * Handle Foo things for the foo theme. | |
| */ | |
| window.wdsFoo = {}; | |
| ( function( window, $, app ) { | |
| // Private variable. | |
| var fooVariable = 'foo'; |
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |