Ferodynamics Network

popular: profile privacy, mobile privacy

October 23, 2007

I have been several versions of Wordpress behind for a little while and, with this blog, have just caught up. My verdict? Widgets are pretty cool. Having said that it seems clear that the creators of widgets have missed a trick. Why stop with the sidebar?

Widgets give you control over the layout and contents of your sidebar, but there is no reason why you can’t use them to control other parts of your site. For example, in just ten minutes I was able to convert my home page to give me control over most of the layout. Now I am going to explain how.

Register a second sidebar

In the functions.php file, in my theme folder, I have now registered two sidebars. One is controlling my footer, and the other the content of my home page;

[php]
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' => 'footer',
'before_widget' => '

',
'after_widget' => '

',
'before_title' => '

',
'after_title' => '

',
));
register_sidebar(array(
'name' => 'home page contents',
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
));

}

I’ve given then nice names so I recognise them in the admin console.

Create and register the home page content widget

Again in functions.php, I have produced a function to output the standard contents of the home page loop without any change. The example has a placeholder for simplicity:

[php]
function widget_home_page_content(){

?>

*** Loop Contents ****


}

I have then registered this function as a new widget

[php]
register_sidebar_widget('Home Page Content',widget_home_page_content);

Pretty simple so far right?

Convert your index to a sidebar

I have replaced the Wordpress loop in my index file, with a call to the second sidebar. My entire index file now looks like this:

[php]


I can now start to produce and use widgets to place content above and below the contents of my home page, without messing with the theme. I could even go further and break the loop into parts, giving even more control over the precise way posts are displayed, or make a single page theme, using widgets to control the layout.

I’m just wondering how far it is possible go using only widgets.

Html 5 Gallery
6 comments
page 1305
Html 5 Gallery
6 comments
page 1305
Silence Is Golden
3 comments
page 213
Questions About Habari For Wordpress Users
6 comments
page 424
Theming Habari Vs Wordpress
13 comments
page 440
My Experience Of Flexx
4 comments
page 1026
Plugin Update Fun With Photo Data 2
one comment
page 815
Post Image The Easy Peasy Way
26 comments
page 1065
Categories Vs Tags Either Neither Or Both
12 comments
page 7
Gaining Benefits From Plugins
8 comments
page 1167
Fun With Theme Widgets
24 comments
page 867
Beware Wp Cache
8 comments
page 1310
Six Million Ways To Die Choose One
14 comments
page 1128
Post Image The Easy Peasy Way
26 comments
page 1065
Post Image The Easy Peasy Way
26 comments
page 1065
Wordpress Chat
one comment
page 1308
Post Image The Easy Peasy Way
26 comments
page 1065
Wordpress Chat
one comment
page 1308
Beware Wp Cache
8 comments
page 1310
Wp Polls Reviewed
one comment
page 58
Fun With Photo Data
12 comments
page 330
Fun With Sidebar Tabs Styling
2 comments
page 336
Html 5 Gallery
6 comments
page 1305
Using Your Own Url Shortener
4 comments
page 1190
Html 5 Gallery
6 comments
page 1305
My Experience Of Flexx
4 comments
page 1026
Fun With Sidebar Tabs
193 comments
page 57
Html 5 Gallery
6 comments
page 1305
Fun With Plugins
27 comments
page 14
Wordpress 25 Exif Fields
12 comments
page 230
Html 5 Gallery
6 comments
page 1305
Html 5 Gallery
6 comments
page 1305
Html 5 Gallery
6 comments
page 1305
Quick N Dirty Replacement Text
no comment
page 122
Beware Wp Cache
8 comments
page 1310
Theming Habari Vs Wordpress
13 comments
page 440
  updated 1 seconds ago
Saturday, 4am
cakipin

thanks, it very good scrib

Thursday, 8pm
Andrew Rickmann

Mak, I don't know the answer I'm afraid. It seems more likely that there is something up with the widget itself.

Thursday, 11am
mak

hi please help. i have a theme with 3 columns ie: main page 2 sidebars side by side.

i have the cats, links in one and register and tags in the other.

But when i install a tweet widget the tweet widget is shown in my3 sidebar but everything else just disappears.

i wanted the widget to show under the rest of the items

please help

Monday, 2pm
deshock.com » Blog Archive » We Need To Kill The Sidebar

[...] Developers: Check out Doing more with Widgets: Home Page Layout and Doing more with widgets: Changing Layouts for some fun tutorials on using WordPress [...]

Monday, 7am
Andrew Rickmann

CarpetGuy,

You could do it as a plugin but this technique relies on changing the theme itself so if you changed the theme you are likely to lose most of it anyway.

Upgrading WordPress shouldn’t have an effect on this technique though as the only changes are to the theme files.

Sunday, 11pm
CarpetGuy

I have one question, what happens when you upgrade? The way that I understand it, your additions, not done as a plug-in, will get over written when you upgrade. Might it be better to create a plugin instead of just changing code?

Tuesday, 9am
wp-fun » Blog Archive » Doing more with widgets: Changing Layouts

[...] few weeks ago I showed how the home page contents could be moved into a widget to allow additional content to be added above and below it. That’s an interesting technique [...]

Sunday, 11pm
Andrew Rickmann

Christopher, it is possible to install widgets as part of the functions.php file that sites in the template itself, so other than installing the template there isn’t really too much more you need to do.

Sunday, 8pm
Christoph Voigt

I guess you could go pretty far with creating a theme that’s completely made out of widgets. However, the gain in flexibility comes with the price of increased administration.
If I’m not mistaken every widget has to be installed as a plugin. Really makeing use of a widget-based theme could easily create a dozen of widgets which will sooner or later clutter the plugins-page. Wouldn’t it be great if you could have a sort-of-wysiwyg editor for managing the entire theme?