This is possible by using HTML in the cells of the table.
For instance
<a href="http://www.test.com" title="test site">Test</a>
should show up as a link ‘Test’.
Thank you very much that works nicely
another question: is there a way to combine the columns? like if i had 2 rows and 3 columns but i wanted to ad a row to he top of it with no columns?
is there a plugin for this?… why not using simple html?…
<table>
<tr>
<td colspan="3">Row 1, column 1</td>
</tr>
<tr>
<td>Row 2, column 1</td>
<td>Row 2, column 2</td>
<td>Row 2, column 3</td>
</tr>
</table>
It’s better & faster to type it…
very sorry for the blank posts, something weird happenned here… =.=
@shiroujune: Hey Shirou ^^ I don’t have a working demo online to demonstrate the table, but WP-Table provides an easy interface for users with the most basic WP skills to create and maintain entries in a table without knowing HTML.
The final table that is displayed on the website also allows for easy sorting alphabetically per-column if I remember correctly.
@heyjoe79: Glad it worked for you 🙂 Let me get back to you re: your question, but just to check: Would this combined column be at the top of the table?