ViktorNova / wp-theme

Composer Create Project Repo for Better Wordpress

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Starter Theme

This repository contains the files that composer create will download into your new better-wordpress theme.

📦  View on Packagist
📃  Read the Docs


Usage

Inside of your site's wp-content/themes, run the following command:

composer create-project open-function-computers-llc/wp-theme <theme-name>

Then enter your new theme's directory and get dependancies:

cd <theme-name>
npm install

And that's it! Read about what to do next on the docs.


Security notes

The /vendor directory is blocked from public access by Apache by the included .htaccess file. If you're using NGINX, you can add this to your virtual host

    location ^~ /vendor/ {
        deny all;
        return 403;
    }

License

Licensed under the MIT license, see LICENSE.

About

Composer Create Project Repo for Better Wordpress

License:MIT License


Languages

Language:PHP 67.5%Language:Smarty 20.3%Language:CSS 5.8%Language:JavaScript 4.3%Language:SCSS 2.1%