Entries tagged with “WordPress”.
Did you find what you wanted?
Fri 27 Feb 2009
This post is to test the working of my Open Browser Window Plugin for WordPress.

Code used:
<a href="/wp-content/connections-reloaded.jpg" onclick="ald_OpenBrWindow(this.href,'aldobw','','800','600',true); return false"><img src="/wp-content/connections-reloaded.jpg" alt="Connections Reloaded Screenshot" /></a>
Copy pasting the above code can cause errors due to the way the text is rendered by WordPress. Please check the single and double quotes. You can use it as a starting point to write your own code. Better still use the quicktags button in the HTML tab of your Add New post/page screen.
Sun 30 Nov 2008
GreyBox is a script can be used to display websites, images and other content in a beautiful way.
GreyBox Integrator provides a one-click installation of GreyBox on your WordPress blog.
Below are a few demo implementations of GreyBox. Learn how to use GreyBox in your posts.
One website
Website gallery
One image
Image gallery
Thu 27 Nov 2008
Niceforms is a script that will replace the most commonly used form elements with custom designed ones. You can either use the default theme that is provided or you can even develop your own look with minimal effort.
WP-Niceforms provides a one-click installation of Niceforms on your WordPress blog. The default theme has been optimized for usage with WordPress.
Mon 29 Jan 2007
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).
We will now float some text to the left:
This text is floated left
What about text floated to the right?
This text is floated right
Putting code in posts is a necessity for developers!
This is where you would put some code
This is Heading 1
This is Heading 2
This is Heading 3
- Unordered List – Item 1
- Item 2
- Item 3
- Ordered List – Item 1
- Item 2
- Item 3
Fri 31 Mar 2006
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.