Entries tagged with “Plugins”.
Did you find what you wanted?
Mon 29 Jan 2007
Posted by Ajay under Plugins, WordPress
Comments Off
In response to Ronald’s request to help debug the new Feed Style plugin, I’ve decided to give it a test out here on my demoblog.
The idea behind Feed Styler is to ensure that your post can contain the same set of styles as you intended it to. This will help it to look the same in every feed reader (atleast those which don’t strip and apply their own styles).
This text is floated left
This text is floated right
This is where you would put some code
This is Heading 1
This is Heading 2
This is Heading 3
Fri 31 Mar 2006
Posted by Ajay under General, Plugins, WordPress
Comments Off
This post is to test the working of my Open Picture Window Plugin for WordPress.

Code used:
<a href="/wp-content/connections-reloaded.jpg"
onclick="ald_OpenPictureWindow(this.href,’iimagebrowser’,
”,’800′,’600′,true,’Connections Reloaded’); return false">
<img src="/wp-content/_connections-reloaded.jpg"
title="Connections Reloaded"
alt="Connections Reloaded"
width="250"
height="187"
class="thumbnail" /></a>
Copy pasting the above code can cause errors due to the way the text is rendered. Please use it as a starting point to write your own code.
Sat 26 Nov 2005
Posted by Mr. Plugin Tester under Plugins, WordPress
[2] Comments
Testing Exec-PHP on WP2.1 alpha
<?php
echo "Current date and time: ";
echo date("l dS of F Y h:i:s A");
?>
This should display the date:
[?php
echo "Current date and time: ";
echo date("l dS of F Y h:i:s A");
?]
Update 1: using <?php doesn’t work. I will have to use [?php
Update 2: both don’t seem to be working! Will contact Soren about this.