Created
March 3, 2020 03:50
-
-
Save aliaramli/f9eb90fad5130ce8c16b9abd6ecc51b9 to your computer and use it in GitHub Desktop.
Copy files to our wordpress child theme directory
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
//create the directories first in our child theme | |
mkdir -p /var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/js | |
mkdir -p /var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/css | |
//copy files from our machine to the server site. | |
scp utils.js alia@xxx:/var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/js/ | |
scp utils.css alia@xxx:/var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/css/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment