I’m on WordPress 3.0.4
and I’m having a hard time deciding which way to go. The following is my problem:
I have a mysql
database table widgets
, with about 10 properties
like id, size, color etc.
Now I’d like to integrate this table into WordPress
, preferably in such a way that I can get paginated lists of the widgets
, show information on a single widget and have a flexible layout.
Preferably, I would like the ability to change a custom template in such a way that I can change the position of each property on the page (So maybe I’d like to put e.g. the size-property on top of the page on the left, later I might want to put it on the right bottom).
What would be the best way to store the widgets
, retrieve them by using as much WordPress
build-in functions and how can I get this flexible layout as well?
I’ve written my own plugins before, so I have more than basic knowlegde on WordPress/PHP/MySQL
.