Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Sage | 12,107 | 6 | 3 | 4 days ago | 40 | July 19, 2022 | 13 | mit | PHP | |
WordPress starter theme with Laravel Blade components and templates, Tailwind CSS, and a modern development workflow | ||||||||||
Timber | 5,209 | 131 | 77 | 8 days ago | 115 | June 22, 2022 | 209 | mit | PHP | |
Create WordPress themes with beautiful OOP code and the Twig Template Engine | ||||||||||
Typography.js | 3,757 | 2,206 | 186 | 4 months ago | 79 | May 10, 2021 | 95 | mit | JavaScript | |
A powerful toolkit for building websites with beautiful design | ||||||||||
Argon Theme | 3,160 | 2 months ago | 120 | gpl-3.0 | PHP | |||||
📖 Argon - 一个轻盈、简洁的 WordPress 主题 | ||||||||||
Understrap | 2,957 | 81 | 1 | 2 days ago | 37 | November 08, 2021 | 75 | gpl-3.0 | CSS | |
Underscores + Bootstrap = Understrap, the renowned open-source WordPress starter theme. | ||||||||||
Sakura | 2,947 | 2 months ago | 20 | gpl-2.0 | PHP | |||||
A Wonderful WordPress Theme: 樱花庄的白猫博客主题 | ||||||||||
Frontity | 2,823 | 6 | 67 | 2 months ago | 60 | July 19, 2022 | 66 | apache-2.0 | TypeScript | |
» Frontity - The React Framework for WordPress | ||||||||||
Foundationpress | 2,780 | 4 years ago | 35 | April 12, 2019 | 55 | mit | PHP | |||
FoundationPress is a WordPress starter theme based on Foundation 6 by Zurb | ||||||||||
Kratos | 2,709 | a day ago | 7 | gpl-3.0 | PHP | |||||
📖 WordPress theme that focus on reading experience | ||||||||||
Plugin Update Checker | 1,927 | 63 | 30 | 21 days ago | 31 | July 24, 2022 | 79 | mit | PHP | |
A custom update checker for WordPress plugins. Useful if you don't want to host your project in the official WP repository, but would still like it to support automatic updates. Despite the name, it also works with themes. |
Picard is an experimental prototype WordPress theme that makes use of React and the new WP-API. It means, that instead of loading new page every time you click a link, it uses background AJAX requests to WP REST API to fetch data without reloading the page.
Please note, it is STRONGLY recommended that this theme is not used in any production environment. It is purely for educational and testing purposes. This theme is under development so it is not recommended that you rely on any aspect of it.
First, prepare a proper WordPress environment:
master
branch – the default is currently develop),/%year%/%monthnum%/%day%/%postname%/
.Unlike other themes, this one uses a build process. JavaScript is an interpreted language, but we need to take certain steps (like transpiling React JSX syntax or SASS CSS syntax) to take the files from development phase to production. You will need the following tools:
npm install -g gulp
to install gulp in your system (-g
flag installs package globally so you will now have gulp command in your command line).Next, you have to set up the theme:
wp-content/themes
directory of your WordPress installation. You can clone this repository (git clone [email protected]:Automattic/Picard.git
) or just press download on the right side - also here (remember to unzip).npm install
to install the node dependencies. npm will take care of the rest (npm installs dependencies listed in the package.json file).gulp build
to compile the JavaScript and SASS. Gulp will know what to do, because proper actions are listed in the gulpfile.js,gulp watch
to actively develop the theme and have the styles and JS files automatically update. Watch command listens for file changes and starts build process every time you save a source file.Pull requests and issues are very much welcome!
A not exhaustive list of all things Picard still needs to do: