Post Tools

Download

Post Tools is a WordPress plugin that gives you dozens of “tags” that you can use in your post to do fun and interesting things, like inserting a Flash MP3 player, running PHP code in post, displaying your visitor’s name, password protecting a portion of a post, easily adding forms to post, and more.

The Post Tools tags look similar to normal HTML tags, and are inserted in the same way. Here are a couple examples:

To insert a Flash MP3 player:
<pt:mp3player what=”http://www.mysite.com/mysong.mp3″ />

To insert a QuickTime Movie:
<pt:quicktime what=”http://www.mysite.com/somevideo.mov” />

To password protect a portion of a post:
<pt:password what=”somepassword”>
You can only see this part of the post if you know the password.
</pt:password>

To display the visitor’s name:
<pt:visitor what=”name” />

Using different languages in a post:
<pt:lang what=”en”>
This is my post in English.
</pt:lang>
<pt:lang what=”es”>
Éste es mi poste en Español.
</pt:lang>

Running PHP in your post:
<pt:php>
$i = 11;
$y = 12;
echo $i + $y;
</pt:php>

Sending SQL to the database:
<pt:sql>
SELECT * FROM wp_posts;
</pt:sql>

And there are many, many more tags.

Download