Question

All tutorials I have found say to add your shortcodes to functions.php in your theme. I would like to break that away from my theme and put that in a plugin so I can share these shortcodes between my network of blogs. Is there a reference or tutorial on creating these shortcodes in a plugin?

Was it helpful?

Solution

Code in functions.php and plugins works in almost exactly same way (except than stage at which it is loaded and some plugin-specific hooks).

Basically you just take your code out of functions.php, place it in plugin and it still works. It is good practice to use naming conventions and checking for functions definitions so it doesn't explode if you accidentally load both copies.

But there will be no difference in how code actually works.

See Writing a Plugin for a starting point.

OTHER TIPS

Basically, you just prepend your functions with a plugin header.

As a really simple example, I just put my shortcode plugin to GitHub: http://github.com/toscho/WordPress-Shortcodes

It is missing I18n – as usual :) – but it should give you some hints.

Licensed under: CC-BY-SA with attribution
Not affiliated with wordpress.stackexchange
scroll top