WordPress Plugin Development - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T10:44:17Z http://stackoverflow.com/feeds/question/243873 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/243873/wordpress-plugin-development 2 WordPress Plugin Development Mike Wills 2008-10-28T16:08:14Z 2009-01-24T23:05:42Z <p>Besides the CODEX what resources do you recommend to help a person new to creating plugins help create a WordPress plugin. I have an idea, but need a bit better explanation than what is in the CODEX to get started.</p> <p>UPDATE: Is there a book that I could buy to help me out with this?</p> http://stackoverflow.com/questions/243873/wordpress-plugin-development/243948#243948 4 Answer by Abyss Knight for WordPress Plugin Development Abyss Knight 2008-10-28T16:23:14Z 2008-10-28T20:03:51Z <p>Having written the MyBlogLog plugin (the original one, that is) I found that the Wordpress Hooks list (can't remember the link offhand) was incredibly useful, as was the sample code from the Codex and WP Install files. Reading through other developer's plugins is also a good way to learn, as you can see how they implemented things and use those techniques to save yourself some R&amp;D time.</p> <p>What are you looking to create, anyways?</p> <p><strong>Edit:</strong></p> <p>I posted a comment with this, but just in case it gets lost...</p> <p>For your specific needs, you're going to want to store data and be able to manage and retrieve it so creating a custom database table in your plugin is something you will want to do. See this codex link:</p> <p><a href="http://codex.wordpress.org/Creating_Tables_with_Plugins" rel="nofollow">http://codex.wordpress.org/Creating_Tables_with_Plugins</a></p> <p>Then you can just add your management code into the admin screens using the techniques found on this Codex page:</p> <p><a href="http://codex.wordpress.org/Adding_Administration_Menus" rel="nofollow">http://codex.wordpress.org/Adding_Administration_Menus</a></p> <p>If you want to display the items on a page, you can either write yourself a custom PHP WP Page template to query the DB directly:</p> <p><a href="http://codex.wordpress.org/Pages#Page_Templates" rel="nofollow">http://codex.wordpress.org/Pages#Page_Templates</a></p> <p>Or just add a hook filter on your plugin to write the results to the page based on a keyword you specify:</p> <p><a href="http://codex.wordpress.org/Plugin_API#Filters" rel="nofollow">http://codex.wordpress.org/Plugin_API#Filters</a></p> http://stackoverflow.com/questions/243873/wordpress-plugin-development/244512#244512 0 Answer by anonymous coward for WordPress Plugin Development anonymous coward 2008-10-28T19:27:08Z 2008-10-28T19:27:08Z <p>Although technically still information found within the Codex, the Codex contains links to external resources. Apologies for not posting a direct link, but look again, and you should find them.</p> http://stackoverflow.com/questions/243873/wordpress-plugin-development/245777#245777 1 Answer by gaoshan88 for WordPress Plugin Development gaoshan88 2008-10-29T04:15:31Z 2008-10-29T04:15:31Z <p>Here is a <a href="http://www.devlounge.net/extras/how-to-write-a-wordpress-plugin" rel="nofollow">useful set of links</a> on how to do Wordpress plugins. Be aware that it is relatively "advanced" (in that it introduces a number of object oriented methods to the process). You should really read the Wordpress Codex stuff first.</p> http://stackoverflow.com/questions/243873/wordpress-plugin-development/476852#476852 0 Answer by Stephen Baugh for WordPress Plugin Development Stephen Baugh 2009-01-24T23:05:42Z 2009-01-24T23:05:42Z <p>I think one of the most important resources is the code used in other plugins.</p> <p>Not necessarily doing what yours does, but ones that use have features you want to implement.</p> <p>For example, if you want to find how to create an options page, you are going to work it out pretty quickly if you see how all the others do it.</p>