Entries tagged with “Plugins”.


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

This post is to test the working of my Open Picture Window Plugin for WordPress.

Connections Reloaded

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.

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.