Wordpress :Creating a Simple Shortcode
The thing to remember with shortcodes is that they're very easy to create. If you know how to write a basic PHP function, then you already know how to create a WordPress shortcode. For our first one, let's create the well-known "Hello, World" message.
- Open the functions.php file in your theme. If the file doesn't exists, create it.
- First, we have to create a function to return the "Hello World" string. Paste this in your functions.php file:
1
function
hello() {
2
return
'Hello, World!'
;
3
}
- Now that we have a function, we have to turn it into a shortcode. Thanks to the
add_shortcode()
function, this is very easy to do. Paste this line after ourhello()
function, then save and close the functions.php file:add_shortcode(
'hw'
,
'hello'
);
The first parameter is the shortcode name, and the second is the function to be called.
- Now that the shortcode is created, we can use it in blog posts and on pages. To use it, simply switch the editor to HTML mode and type the following:
[hw]
You're done! Of course, this is a very basic shortcode, but it is a good example of how easy it is to create one.
http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/
Comments
Post a Comment
Thanks
Warm regards,
Karthikeyan.T
tkarthikeyan@gmail.com
www.carthworks.com
Call us 09445 2772 06