settingsAccountsettings
By using our mini forum, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy
Menusettings

Q: Plugins for WordPress theme developers

+5 votes

Hi, I am interested in developing WordPress CMS themes.

Which WP developing plugins or/and code tips/tricks do you use?

I mean maybe for templates/querues, PHP, etc. which will make your workflow/programming life easier?

Thanks

BTW, these 3 articles/forum threads were extremely useful:

Auto reload browser while developing WordPress theme

Git/GitHub and WP/PHPStrom dev

NPM and NPM Packages

asked in Web Development category by user eiorgert
edited by user golearnweb

3 Answers

+4 votes

Hi, here are my developing WordPress plugins which I use in my daily routine:

To see the queries and loading scripts/styles in my WordPress site, I use:

Query Monitor: https://wordpress.org/plugins/query-monitor/


To show the WP template on which I am currently on, the plugin I use is:

Show Current Template: https://wordpress.org/plugins/show-current-template/

...and this one is pretty much the same:

Which Template: https://wordpress.org/plugins/which-template/


Plugin to see whether everything is fine with our WP theme. It runs a quick scan (the same as doing a spell check before submitting an article):

Theme Checkhttps://wordpress.org/plugins/theme-check/


Password protect your whole WordPress site with a 1 password (you can use it as Under Construction WP plugin alternative). You can also allow (whitelist) your IP address :-)

Password Protectedhttps://wordpress.org/plugins/password-protected/

answered by user golearnweb
edited by user golearnweb
+4 votes

To import dummy WordPress pages/posts/categories/comments/tags, etc. (Test Unit Data) I use: https://codex.wordpress.org/Theme_Unit_Test

Or you can add dummy content from http://wptest.io/

answered by user sam
edited by user golearnweb
+1 vote

For my WordPress debugging I am using the official plugin from WordPress.org: 

Debug Barhttps://wordpress.org/plugins/debug-bar/

...and his add-on for actions and filters:

Debug Bar Actions and Filters Addonhttps://wordpress.org/plugins/debug-bar-actions-and-filters-addon/


Also, to see the hooks in my WP (and WooCommerce) theme I use:

Simply Show Hookshttps://wordpress.org/plugins/simply-show-hooks/

answered by user tuto
edited by user golearnweb
...