Archive for the ‘Wordpress’ Category

Thursday, May 8th, 2008

Wordpress widgets, playing with recent posts

This morning I wanted to display the most recent post from the blog in the footer, don’t ask me why I just wanted to.

I know one thing or two about php and I thought it would be straight forward. Locate the function from the sidebar.php, copy and paste it, done. (more…)

Monday, April 28th, 2008

Wordpress admin interface, moving elements part 2

Here is what you need to style your category div after moving it of course :

First we take off the margin off the div container:

/*Added after moving*/
#categorydiv.postbox
{
margin:0;
}
/*Added after moving*/
#categorydiv div.ui-tabs-panel
{
margin:0;
clear:both;
}

(more…)

Thursday, April 24th, 2008

Wordpress admin interface, moving elements part 1

The last version of wordpress is awsome and add a lot of needed features but there some bits where I was more happy with the old one. When you write a new post, the category list is now positioned below the Editor, just after the tags. Why so far and not where it was before, on the right hand side. There is space over there…

Ok, if they choose to place it where it is it doesn’t mean it has to be there forever. Let’s get it on the side, just after the “save” and “publish” buttons. (more…)