├── CONTRIBUTING.md └── README.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contribution Guidelines 2 | 3 | * Use the following format: ```[LIBRARY](LINK) - DESCRIPTION``` 4 | * The link should be the name of the package or project 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Wordpress 2 | 3 | A curated list of awesome WordPress plugins for developers. 4 | 5 | - [Awesome WordPress](#awesome-wordpress) 6 | - [Extending WordPress](#extending-wordpress) 7 | - [Administrator plugins](#administrator-plugins) 8 | - [Themes](#themes) 9 | - [Tools](#tools) 10 | 11 | ## Extending WordPress 12 | 13 | - [Plugin Boilerplate](https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate) - Clear and consistent guide for building your plugins. 14 | - [Widget Boilerplate](https://github.com/tommcfarlin/WordPress-Widget-Boilerplate) - Clear and consistent guide for building your widgets. 15 | 16 | ## Administrator plugins 17 | 18 | - [Magic Fields 2](https://github.com/magic-fields-team/Magic-Fields-2) - Create custom fields, post types and taxonomies easily. 19 | - [Codepress Admin Columns](https://wordpress.org/plugins/codepress-admin-columns/) - Customize columns on post listing. 20 | - [Intuitive Custom Post Order](https://wordpress.org/plugins/intuitive-custom-post-order/) - Posts reordering on post listing. 21 | - [Disable Comments](https://wordpress.org/plugins/disable-comments/) - Allow to disable comments easily. 22 | - [Multiple Post Thumbnails]( https://wordpress.org/plugins/multiple-post-thumbnails/) - Allow to upload multiple "featured images" per post. 23 | - [Tablepress](https://wordpress.org/plugins/tablepress/) - Easily create and embed tables on posts. 24 | - [Gallery Custom Links](https://wordpress.org/plugins/wp-gallery-custom-links/) - Adds "Gallery Link URL" to gallery item fields. 25 | - [Crontab scheduler](https://wordpress.org/plugins/cronjob-scheduler) - Easily manage and register tasks to run automatically. 26 | - [Contact Form 7](https://wordpress.org/plugins/contact-form-7/) - Create and manage multiple contact forms. 27 | 28 | 29 | ## Themes 30 | 31 | - [Underscores.me](http://underscores.me/) - Clean and commented theme to start a project. 32 | 33 | 34 | ## Tools 35 | 36 | - [wp-cli](https://github.com/wp-cli/wp-cli) - A command line interface for WordPress 37 | - [Generate WP](http://generatewp.com/) - Common code snippets generator. 38 | --------------------------------------------------------------------------------