
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.
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.
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?
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.
(__)
`
thanks, it very good scrib
(__)
`
Mak, I don't know the answer I'm afraid. It seems more likely that there is something up with the widget itself.
(__)
`
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
(__)
`
[...] Developers: Check out Doing more with Widgets: Home Page Layout and Doing more with widgets: Changing Layouts for some fun tutorials on using WordPress [...]
(__)
`
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.
(__)
`
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?
(__)
`
[...] 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 [...]
(__)
`
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.
(__)
`
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?