<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Tag: widget</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 26 May 2013 04:57:15 +0000</pubDate>

<item>
<title>helgatheviking on "Create widget areas below my lefted vertical menu"</title>
<link>http://themeshaper.com/forums/topic/create-widget-areas-below-my-lefted-vertical-menu#post-26974</link>
<pubDate>Fri, 11 May 2012 16:50:12 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26974@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;as i suggested you need to override the thematic_access() function that is creating the #access div.  don't touch, but look around the extensions folder... you'll see all the behind-the-scenes power.  you'll also notice a whole slew of functions that take the form of&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if (function_exists(&#38;#39;childtheme_override_some_function&#38;#39;))  {
	    function thematic_some_function() {
	    	childtheme_override_some_function();
	    }
	} else {
		function thematic_some_function() {
			echo &#38;quot;some function here!&#38;quot;;
		}
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;this means that anywhere you want to override something you can copy the thematic_some_function() function  into your functions.php and rename it to childtheme_override_some_function().&#60;/p&#62;
&#60;p&#62;as i said, you need to add an action hook inside of access.  so you need to override thematic_access() like so (oh and you'll need to define the action hook)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// define action hook inside the #access div
function kia_access_widget_area() {
    do_action(&#38;#39;kia_access_widget_area&#38;#39;);
} // end kia_access_widget_area

//override thematic_access
function childtheme_override_thematic_access() { ?&#38;gt;

    &#38;lt;div id=&#38;quot;access&#38;quot;&#38;gt;

    	&#38;lt;div class=&#38;quot;skip-link&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;#content&#38;quot; title=&#38;quot;&#38;lt;?php _e(&#38;#39;Skip navigation to the content&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;Skip to content&#38;#39;, &#38;#39;thematic&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;&#38;lt;!-- .skip-link --&#38;gt;

    	&#38;lt;?php 

    	if ((function_exists(&#38;quot;has_nav_menu&#38;quot;)) &#38;#38;&#38;#38; (has_nav_menu(apply_filters(&#38;#39;thematic_primary_menu_id&#38;#39;, &#38;#39;primary-menu&#38;#39;)))) {
    		echo  wp_nav_menu(thematic_nav_menu_args());
   		} else {
   			echo  thematic_add_menuclass(wp_page_menu(thematic_page_menu_args()));
   		}

		// here&#38;#39;s our new hook
		kia_access_widget_area();
    	?&#38;gt;

	&#38;lt;/div&#38;gt;&#38;lt;!-- #access --&#38;gt;

&#38;lt;?php }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;lastly you'll add your new widget to this new hook instead of above_container&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// This will create your widget area
function my_widgets_init() {
    register_sidebar(array(
       	&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Submenu&#38;#39;,
       	&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;submenu&#38;#39;,
       	&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;li id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widgetcontainer %2$s&#38;quot;&#38;gt;&#38;#39;,
       	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;h3 class=\&#38;quot;widgettitle\&#38;quot;&#38;gt;&#38;quot;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/h3&#38;gt;\n&#38;quot;,
    ));

}
add_action( &#38;#39;init&#38;#39;, &#38;#39;my_widgets_init&#38;#39; );

// adding the widget area to your child theme
// adjust action hook to newly created hook
function submenu_widgets() {
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;submenu&#38;#39;) ) {
    echo &#38;#39;&#38;lt;div id=&#38;quot;submenu&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    dynamic_sidebar(&#38;#39;submenu&#38;#39;);
    echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #submenu .aside --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
	}
}
add_action(&#38;#39;kia_access_widget_area&#38;#39;,&#38;#39;submenu_widgets&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;completely untested.  so be wary of typos.
&#60;/p&#62;</description>
</item>
<item>
<title>pm on "Create widget areas below my lefted vertical menu"</title>
<link>http://themeshaper.com/forums/topic/create-widget-areas-below-my-lefted-vertical-menu#post-26973</link>
<pubDate>Fri, 11 May 2012 15:21:56 +0000</pubDate>
<dc:creator>pm</dc:creator>
<guid isPermaLink="false">26973@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@helga&#60;br /&#62;
Thanks for your answer&#60;/p&#62;
&#60;p&#62;Sorry, but i'm kind of a functions/php newbie. So i got my widget area working with this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// This will create your widget area
function my_widgets_init() {
    register_sidebar(array(
       	&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Submenu&#38;#39;,
       	&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;submenu&#38;#39;,
       	&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;li id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widgetcontainer %2$s&#38;quot;&#38;gt;&#38;#39;,
       	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;h3 class=\&#38;quot;widgettitle\&#38;quot;&#38;gt;&#38;quot;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/h3&#38;gt;\n&#38;quot;,
    ));

}
add_action( &#38;#39;init&#38;#39;, &#38;#39;my_widgets_init&#38;#39; );

// adding the widget area to your child theme
function submenu_widgets() {
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;submenu&#38;#39;) ) {
    echo &#38;#39;&#38;lt;div id=&#38;quot;submenu&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    dynamic_sidebar(&#38;#39;submenu&#38;#39;);
    echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #submenu .aside --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
	}
}
add_action(&#38;#39;thematic_abovecontainer&#38;#39;,&#38;#39;submenu_widgets&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But i would like to put it inside the #access Div which is located in the wrapper :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;body&#38;gt;

&#38;lt;div id=&#38;quot;header&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;div id=&#38;quot;wrapper&#38;quot;&#38;gt;
    &#38;lt;div id=&#38;quot;access&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
    &#38;lt;div id=&#38;quot;submenu&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
    &#38;lt;div id=&#38;quot;container&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
    &#38;lt;div id=&#38;quot;primary&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;div id=&#38;quot;footer&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;

&#38;lt;/body&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I tested a lot of things but don't find the way #submenu in #access.&#60;/p&#62;
&#60;p&#62;Thanks for your help.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Create widget areas below my lefted vertical menu"</title>
<link>http://themeshaper.com/forums/topic/create-widget-areas-below-my-lefted-vertical-menu#post-26972</link>
<pubDate>Fri, 11 May 2012 13:56:24 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26972@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;right on the front page of the forum:&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;how to add a widget area is in there.  but you'll need extra trickery to get inside #access&#60;/p&#62;
&#60;p&#62;you'd have to override access and rewrite it to add an action hook, then use that hook when defining your widget.
&#60;/p&#62;</description>
</item>
<item>
<title>pm on "Create widget areas below my lefted vertical menu"</title>
<link>http://themeshaper.com/forums/topic/create-widget-areas-below-my-lefted-vertical-menu#post-26971</link>
<pubDate>Fri, 11 May 2012 11:35:40 +0000</pubDate>
<dc:creator>pm</dc:creator>
<guid isPermaLink="false">26971@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello all. Sorry for my problem which seems to me a bit tricky.&#60;/p&#62;
&#60;p&#62;I've my vertical menu which is positioned (fixed) at the left of the website (&#60;strong&#62;div #access into the #wrapper&#60;/strong&#62;)&#60;/p&#62;
&#60;p&#62;I would like to &#60;strong&#62;add widget areas (3-4)&#60;/strong&#62; below this vertical navigation menu and &#60;strong&#62;inject these widgets into the Div #access.&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Is it possible to do that? Am i crazy?
&#60;/p&#62;</description>
</item>
<item>
<title>bogh on "How to add a Widgetized area using thematic_belowheader();"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-widgetized-area-using-thematic_belowheader#post-26911</link>
<pubDate>Wed, 09 May 2012 18:13:09 +0000</pubDate>
<dc:creator>bogh</dc:creator>
<guid isPermaLink="false">26911@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for your quick answer.&#60;/p&#62;
&#60;p&#62;Because I can't seem to find a way to do it how I wanted, I will just position it above the Primary Aside.&#60;/p&#62;
&#60;p&#62;Thanks again. I wish you a good day.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How to add a Widgetized area using thematic_belowheader();"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-widgetized-area-using-thematic_belowheader#post-26906</link>
<pubDate>Wed, 09 May 2012 17:52:31 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26906@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;appreciate that.  as you can imagine it is very frustrating on my end to answer what can be found by googling.  it happens all the time too.  &#60;/p&#62;
&#60;p&#62;i do not believe you can move the location of the admin widget box out of the right-hand column.  i don't know for certain, but since you can't even drag and re-position it there (like you can rearrange most boxes in the admin) i am going to guess that you can't.  it is certainly way beyond the scope of thematic theme mods even if you can.
&#60;/p&#62;</description>
</item>
<item>
<title>bogh on "How to add a Widgetized area using thematic_belowheader();"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-widgetized-area-using-thematic_belowheader#post-26902</link>
<pubDate>Wed, 09 May 2012 16:49:31 +0000</pubDate>
<dc:creator>bogh</dc:creator>
<guid isPermaLink="false">26902@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am sorry about the confusion.&#60;br /&#62;
I was reffering to the backend (*appeareance &#38;gt; widgets).&#60;br /&#62;
So if I am creating a widget area like @hlynnt have done, how can I add it above the &#34;Inactive Widgets&#34; area, instead of adding it on the right side where are the other widget areas (Primary Aside, Secondary Aside etc.)&#60;/p&#62;
&#60;p&#62;For this one I have googled a lot :) , I don't use to ask for help without making my searches first ... &#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "How to add a Widgetized area using thematic_belowheader();"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-widgetized-area-using-thematic_belowheader#post-26899</link>
<pubDate>Wed, 09 May 2012 16:29:19 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26899@http://themeshaper.com/forums/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;Is there a way I can move a widget area like that above the &#34;Inactive Widgets&#34; area?&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;sorry, do not understand at all.  Inactive Widgets is in the backend.  are you referring to the admin menu order?&#60;/p&#62;
&#60;p&#62;as for always keeping it open, let me google that for you.&#60;/p&#62;
&#60;p&#62;first result:&#60;br /&#62;
&#60;a href=&#34;http://stackoverflow.com/questions/5828300/wordpress-how-to-keep-a-widget-sidebar-open-by-default&#34; rel=&#34;nofollow&#34;&#62;http://stackoverflow.com/questions/5828300/wordpress-how-to-keep-a-widget-sidebar-open-by-default&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>bogh on "How to add a Widgetized area using thematic_belowheader();"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-widgetized-area-using-thematic_belowheader#post-26898</link>
<pubDate>Wed, 09 May 2012 16:05:25 +0000</pubDate>
<dc:creator>bogh</dc:creator>
<guid isPermaLink="false">26898@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Is there a way I can move a widget area like that above the &#34;Inactive Widgets&#34; area?&#60;/p&#62;
&#60;p&#62;I suppose I just have to replace &#34;register_sidebar&#34; with something else, but with what?! &#60;/p&#62;
&#60;p&#62;And how can I make it stay opened, like the &#34;Primary Aside&#34; which is always opened ?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "custom side-by-side widgets"</title>
<link>http://themeshaper.com/forums/topic/custom-side-by-side-widgets#post-26887</link>
<pubDate>Tue, 08 May 2012 23:34:12 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26887@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;well as i mentioned in the something new bout widgets thread... its all the same except for where you have your conditionals&#60;/p&#62;
&#60;p&#62;add an extra condition to this to make it only display in certain places&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;right&#38;#39;) ) {&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>candregg on "custom side-by-side widgets"</title>
<link>http://themeshaper.com/forums/topic/custom-side-by-side-widgets#post-26886</link>
<pubDate>Tue, 08 May 2012 23:18:16 +0000</pubDate>
<dc:creator>candregg</dc:creator>
<guid isPermaLink="false">26886@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I changed the padding and margins of the containing widgetareas and it finally worked. Thanks!  Now on to those conditional Primary widget variants...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "custom side-by-side widgets"</title>
<link>http://themeshaper.com/forums/topic/custom-side-by-side-widgets#post-26885</link>
<pubDate>Tue, 08 May 2012 22:08:08 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26885@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;well had to ask the obvious esp, b/c i just dropped this into my local install and the widgets do appear in the markup as expected.  so there is something else going on here.  try putting a different widget in the right sidebar?
&#60;/p&#62;</description>
</item>
<item>
<title>bogh on "custom side-by-side widgets"</title>
<link>http://themeshaper.com/forums/topic/custom-side-by-side-widgets#post-26884</link>
<pubDate>Tue, 08 May 2012 20:57:40 +0000</pubDate>
<dc:creator>bogh</dc:creator>
<guid isPermaLink="false">26884@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;HI,&#60;/p&#62;
&#60;p&#62;Here is a thematic widget like I use it:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;class Footer_Text_Widget extends WP_Widget {
function Footer_Text_Widget() {
		$widget_ops = array(&#38;#39;classname&#38;#39; =&#38;gt; &#38;#39;widget_footer_text&#38;#39;, &#38;#39;description&#38;#39; =&#38;gt; __( &#38;quot;Add some text to your footer.&#38;quot;) );
		$this-&#38;gt;WP_Widget(&#38;#39;footer_text_widget&#38;#39;, __(&#38;#39;Footer_Text_Widget&#38;#39;, &#38;#39;thematic&#38;#39;), $widget_ops);
	}
function update($new_instance, $old_instance) {
		// processes widget options to be saved
		return $new_instance;
	}
function widget($args, $instance) {
		// outputs the content of the widget
		extract($args);

		echo $before_widget;
		?&#38;gt;
			&#38;lt;?php echo $before_title; ?&#38;gt;&#38;lt;?php echo $footer_text_widget_title; ?&#38;gt;&#38;lt;?php echo $after_title; ?&#38;gt;
			&#38;lt;ul&#38;gt;
				&#38;lt;li&#38;gt;//Your Code Here&#38;lt;/li&#38;gt;
			&#38;lt;/ul&#38;gt;
		&#38;lt;?php
		echo $after_widget; }
		}
}
register_widget(&#38;#39;Footer_Text_Widget&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>candregg on "custom side-by-side widgets"</title>
<link>http://themeshaper.com/forums/topic/custom-side-by-side-widgets#post-26882</link>
<pubDate>Tue, 08 May 2012 20:19:34 +0000</pubDate>
<dc:creator>candregg</dc:creator>
<guid isPermaLink="false">26882@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The widget exists in the admin area, and I have it populated with content almost identical to that in Left.  I have also verified that the content exists.&#60;/p&#62;
&#60;p&#62;But, no, it doesn't show in the source code or online.  That's the problem. What I need to figure out is Why. And of course, how to fix it.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "custom side-by-side widgets"</title>
<link>http://themeshaper.com/forums/topic/custom-side-by-side-widgets#post-26881</link>
<pubDate>Tue, 08 May 2012 20:15:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26881@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;there isn't a right widget in your markup.  you might not have a widget in it.
&#60;/p&#62;</description>
</item>
<item>
<title>candregg on "custom side-by-side widgets"</title>
<link>http://themeshaper.com/forums/topic/custom-side-by-side-widgets#post-26878</link>
<pubDate>Tue, 08 May 2012 18:11:40 +0000</pubDate>
<dc:creator>candregg</dc:creator>
<guid isPermaLink="false">26878@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am trying to add several widgets to the Thematic child theme sidebar.  Some have worked; some not.  I have successfully added a custom widget above the Primary.  Now I am trying to add a Left and Right widget side-by-side between the primary and secondary widget areas.&#60;/p&#62;
&#60;p&#62;Here is the function code (in parts):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Add additional Widget
// Create your widget area
function my_widgets_init() {
    register_sidebar(array(
       	&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Community&#38;#39;,
       	&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;community&#38;#39;,
       	&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;li id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widgetcontainer %2$s&#38;quot;&#38;gt;&#38;#39;,
       	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;quot;&#38;quot;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;h3 class=\&#38;quot;widgettitle\&#38;quot;&#38;gt;&#38;quot;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/h3&#38;gt;\n&#38;quot;,
    ));

    register_sidebar(array(
       	&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Left&#38;#39;,
       	&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;left&#38;#39;,
       	&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;li id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widgetcontainer %2$s&#38;quot;&#38;gt;&#38;#39;,
       	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;quot;&#38;quot;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;h3 class=\&#38;quot;widgettitle\&#38;quot;&#38;gt;&#38;quot;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/h3&#38;gt;\n&#38;quot;,
    ));

    register_sidebar(array(
       	&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Right&#38;#39;,
       	&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;right&#38;#39;,
       	&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;li id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widgetcontainer %2$s&#38;quot;&#38;gt;&#38;#39;,
       	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;quot;&#38;quot;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;h3 class=\&#38;quot;widgettitle\&#38;quot;&#38;gt;&#38;quot;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/h3&#38;gt;\n&#38;quot;,
    ));

}
add_action( &#38;#39;init&#38;#39;, &#38;#39;my_widgets_init&#38;#39; );

// adding the widget area to your child theme

function my_community_widget() {
    echo &#38;#39;&#38;lt;div id=&#38;quot;community&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;?&#38;gt;
    &#38;lt;ul class=&#38;quot;community&#38;quot;&#38;gt;
&#38;lt;/code&#38;gt;
&#38;lt;code&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;stylesheet_directory&#38;#39;); ?&#38;gt;/images/rss.png&#38;quot; width=&#38;quot;32&#38;quot; height=&#38;quot;32&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;stylesheet_directory&#38;#39;); ?&#38;gt;/images/email.png&#38;quot; width=&#38;quot;32&#38;quot; height=&#38;quot;32&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;stylesheet_directory&#38;#39;); ?&#38;gt;/images/facebook.png&#38;quot; width=&#38;quot;32&#38;quot; height=&#38;quot;32&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;stylesheet_directory&#38;#39;); ?&#38;gt;/images/twitter.png&#38;quot; width=&#38;quot;32&#38;quot; height=&#38;quot;32&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;stylesheet_directory&#38;#39;); ?&#38;gt;/images/linkedin.png&#38;quot; width=&#38;quot;32&#38;quot; height=&#38;quot;32&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;stylesheet_directory&#38;#39;); ?&#38;gt;/images/youtube.png&#38;quot; width=&#38;quot;32&#38;quot; height=&#38;quot;32&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
    &#38;lt;/div&#38;gt;
	&#38;lt;?php
}

add_action(&#38;#39;thematic_abovemainasides&#38;#39;,&#38;#39;my_community_widget&#38;#39;);

//  Adding Left and Right Widgets

function my_left_widget() {
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;left&#38;#39;) ) {
    echo &#38;#39;&#38;lt;div id=&#38;quot;left&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    dynamic_sidebar(&#38;#39;left&#38;#39;);
    echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #left .aside --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
}
}
add_action(&#38;#39;thematic_betweenmainasides&#38;#39;,&#38;#39;my_left_widget&#38;#39;);

function my_right_widget() {
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;right&#38;#39;) ) {
    echo &#38;#39;&#38;lt;div id=&#38;quot;right&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    dynamic_sidebar(&#38;#39;right&#38;#39;);
    echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #right .aside --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
}
}
add_action(&#38;#39;thematic_betweenmainasides&#38;#39;,&#38;#39;my_right_widget&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Here is the css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#left {
	margin: 0;
	padding: 12px;
	width: 126px;
	float: left;
}

#right {
        margin:0;
        padding:12px;
	float: right;
	width: 126px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The Community widget went in perfectly, and looks great!  Further down, while the Left and Right widget areas appear in the Admin area, only the Left widget content is visible on the webpage.  Please see &#60;a href=&#34;http://seacliffmm.com/prod/indigest/admin/.&#34; rel=&#34;nofollow&#34;&#62;http://seacliffmm.com/prod/indigest/admin/.&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any help?&#60;/p&#62;
&#60;p&#62;Once I get this one figured out, I need to make six different Primary widget areas that will appear based on which category or page is active.  That will be another topic.&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Caron
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "index top widget for category page?"</title>
<link>http://themeshaper.com/forums/topic/index-top-widget-for-category-page#post-26740</link>
<pubDate>Tue, 01 May 2012 23:54:06 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26740@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;ugh, i don't really advise switching everything to pages.  it is inefficient from a query standpoint.  the blog template is going to one day be deprecated too.
&#60;/p&#62;</description>
</item>
<item>
<title>bhomatude on "index top widget for category page?"</title>
<link>http://themeshaper.com/forums/topic/index-top-widget-for-category-page#post-26738</link>
<pubDate>Tue, 01 May 2012 23:01:43 +0000</pubDate>
<dc:creator>bhomatude</dc:creator>
<guid isPermaLink="false">26738@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks Helga -- yes the widget I added was not in the correct place. I actually just wanted that index top widget to also display on category pages. I ended up just changing all my category pages to pages that displayed categorized posts. That allowed me to continue using the index top widget.&#60;/p&#62;
&#60;p&#62;But I'm going to take a look at your suggestion here for the future.&#60;/p&#62;
&#60;p&#62;Thanks again for your help!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "index top widget for category page?"</title>
<link>http://themeshaper.com/forums/topic/index-top-widget-for-category-page#post-26727</link>
<pubDate>Tue, 01 May 2012 13:56:27 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26727@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;what's wrong with the header widget you've created?  is it in the wrong place or do you only want it to display on category pages?&#60;/p&#62;
&#60;p&#62;you could either adjust your conditional logic for displaying the dynamic_sidebar like so:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// adding the widget area to your child theme
function my_header_widgets() {
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;header-aside&#38;#39;) &#38;#38;&#38;#38; is_category()) {
    echo &#38;#39;&#38;lt;div id=&#38;quot;header-aside&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    dynamic_sidebar(&#38;#39;header-aside&#38;#39;);
    echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #header-aside .aside --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
}
}
add_action(&#38;#39;thematic_belowheader&#38;#39;, &#38;#39;my_header_widgets&#38;#39;, 8);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;or you could put it on a hook that only displays on category pages, such as thematic_above_categoryloop() (which is also in a slightly different position)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// adding the widget area to your child theme
function my_header_widgets() {
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;header-aside&#38;#39;) ) {
    echo &#38;#39;&#38;lt;div id=&#38;quot;header-aside&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    dynamic_sidebar(&#38;#39;header-aside&#38;#39;);
    echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #header-aside .aside --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
}
}
add_action(&#38;#39;thematic_above_categoryloop&#38;#39;, &#38;#39;my_header_widgets&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>bhomatude on "index top widget for category page?"</title>
<link>http://themeshaper.com/forums/topic/index-top-widget-for-category-page#post-26725</link>
<pubDate>Tue, 01 May 2012 00:55:03 +0000</pubDate>
<dc:creator>bhomatude</dc:creator>
<guid isPermaLink="false">26725@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm currently using the index top widget area for the posts page, but I'd also like to use it for all my category pages. Perhaps I need to add another widget area specifically for this? If so, what would I hook into ? I'm successfully adding a widget below the header (see code below) but that's not really what I want to do.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//add widget below header

// This will create your widget area
function my_widgets_init() {
    register_sidebar(array(
       	&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Header Aside&#38;#39;,
       	&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;header-aside&#38;#39;,
       	&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;li id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widgetcontainer %2$s&#38;quot;&#38;gt;&#38;#39;,
       	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;quot;&#38;quot;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;h3 class=\&#38;quot;widgettitle\&#38;quot;&#38;gt;&#38;quot;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/h3&#38;gt;\n&#38;quot;,
    ));

}
add_action( &#38;#39;init&#38;#39;, &#38;#39;my_widgets_init&#38;#39; );

// adding the widget area to your child theme
function my_header_widgets() {
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;header-aside&#38;#39;) ) {
    echo &#38;#39;&#38;lt;div id=&#38;quot;header-aside&#38;quot; class=&#38;quot;aside&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    dynamic_sidebar(&#38;#39;header-aside&#38;#39;);
    echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #header-aside .aside --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
}
}
add_action(&#38;#39;thematic_belowheader&#38;#39;, &#38;#39;my_header_widgets&#38;#39;, 8);

//end add widget below header&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>hlynnt on "How to add a Widgetized area using thematic_belowheader();"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-widgetized-area-using-thematic_belowheader#post-25934</link>
<pubDate>Wed, 14 Mar 2012 23:12:04 +0000</pubDate>
<dc:creator>hlynnt</dc:creator>
<guid isPermaLink="false">25934@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks! it works&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// creates widget Featured Home
function featured_home_widgets_init() {
    register_sidebar(array(
       	&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Featured Home&#38;#39;,
       	&#38;#39;id&#38;#39; =&#38;gt; &#38;#39;featured-home&#38;#39;,
       	&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;li id=&#38;quot;%1$s&#38;quot; class=&#38;quot;widgetcontainer %2$s&#38;quot;&#38;gt;&#38;#39;,
       	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;quot;&#38;quot;,
		&#38;#39;before_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;h3 class=\&#38;quot;widgettitle\&#38;quot;&#38;gt;&#38;quot;,
		&#38;#39;after_title&#38;#39; =&#38;gt; &#38;quot;&#38;lt;/h3&#38;gt;\n&#38;quot;,
    ));

}
add_action( &#38;#39;init&#38;#39;, &#38;#39;featured_home_widgets_init&#38;#39; );

// adding the widget area to your child theme
function featured_home_widgets() {
if ( function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;#38;&#38;#38; is_sidebar_active(&#38;#39;featured-home&#38;#39;) ) {
    echo &#38;#39;&#38;lt;div id=&#38;quot;featured-home&#38;quot; class=&#38;quot;aside clearfix&#38;quot;&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;ul class=&#38;quot;xoxo&#38;quot;&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
    dynamic_sidebar(&#38;#39;featured-home&#38;#39;);
    echo &#38;#39;&#38;#39; . &#38;quot;\n&#38;quot; . &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;!-- #featured-home --&#38;gt;&#38;#39;. &#38;quot;\n&#38;quot;;
}
}
add_action(&#38;#39;thematic_belowheader&#38;#39;, &#38;#39;featured_home_widgets&#38;#39;, 8);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>helgatheviking on "How to add a Widgetized area using thematic_belowheader();"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-widgetized-area-using-thematic_belowheader#post-25933</link>
<pubDate>Wed, 14 Mar 2012 21:24:16 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25933@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas#post-6660&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/something-new-bout-widgetized-areas#post-6660&#60;/a&#62;&#60;br /&#62;
change to suit
&#60;/p&#62;</description>
</item>
<item>
<title>hlynnt on "How to add a Widgetized area using thematic_belowheader();"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-widgetized-area-using-thematic_belowheader#post-25931</link>
<pubDate>Wed, 14 Mar 2012 21:08:52 +0000</pubDate>
<dc:creator>hlynnt</dc:creator>
<guid isPermaLink="false">25931@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;On the home page of my child theme I would like to add a widgetized area which will hold a slider and four featured post boxes. Because I want this to appear above #main I need to insert this content with the action hook thematic_belowheader();&#60;/p&#62;
&#60;p&#62;How do I insert a widgetized area specific to the home page with an action hook?&#60;/p&#62;
&#60;p&#62;I haven't been using PHP or WP in a while so I need some instruction. &#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Widgets in Leader Asides Static with the page"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-leader-asides-static-with-the-page#post-25029</link>
<pubDate>Tue, 24 Jan 2012 21:20:41 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25029@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;there isn't a background at all, so i'm still unclear.  might need some screen shots.  a pic is worth a thousand words after all.
&#60;/p&#62;</description>
</item>
<item>
<title>cartelco on "Widgets in Leader Asides Static with the page"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-leader-asides-static-with-the-page#post-25026</link>
<pubDate>Tue, 24 Jan 2012 20:24:14 +0000</pubDate>
<dc:creator>cartelco</dc:creator>
<guid isPermaLink="false">25026@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I basically want the categories section, which I put in the 1st leader aside widget area, to move with its background.
&#60;/p&#62;</description>
</item>
<item>
<title>cartelco on "Widgets in Leader Asides Static with the page"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-leader-asides-static-with-the-page#post-25025</link>
<pubDate>Tue, 24 Jan 2012 20:19:44 +0000</pubDate>
<dc:creator>cartelco</dc:creator>
<guid isPermaLink="false">25025@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Here's a link: &#60;a href=&#34;http://www.cocreativecartel.com/blog&#34; rel=&#34;nofollow&#34;&#62;www.cocreativecartel.com/blog&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Widgets in Leader Asides Static with the page"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-leader-asides-static-with-the-page#post-25023</link>
<pubDate>Tue, 24 Jan 2012 20:08:52 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25023@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;sorry, i have no idea what you mean.  we're going to need more information and probably a link.
&#60;/p&#62;</description>
</item>
<item>
<title>cartelco on "Widgets in Leader Asides Static with the page"</title>
<link>http://themeshaper.com/forums/topic/widgets-in-leader-asides-static-with-the-page#post-25018</link>
<pubDate>Tue, 24 Jan 2012 19:11:26 +0000</pubDate>
<dc:creator>cartelco</dc:creator>
<guid isPermaLink="false">25018@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm having trouble the 1st leader aside in my page. I'm trying to set the content static so it moves with the page and its background. It seems like a simple fix, but I can't for the life of me get it to move! Can someone point me in the right direction? Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>goboygodesign on "Custom sidebar template best practice?"</title>
<link>http://themeshaper.com/forums/topic/custom-sidebar-template-best-practice#post-24934</link>
<pubDate>Tue, 17 Jan 2012 16:19:55 +0000</pubDate>
<dc:creator>goboygodesign</dc:creator>
<guid isPermaLink="false">24934@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you for the suggestions, After some reflection I think that jQuery is going to be the best bet - it's just a minor stylistic addition, so it doesn't warrant a full new sidebar - I'd rather keep the original thematic framework there.
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Custom sidebar template best practice?"</title>
<link>http://themeshaper.com/forums/topic/custom-sidebar-template-best-practice#post-24813</link>
<pubDate>Wed, 11 Jan 2012 02:39:34 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">24813@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You might want to look at Image Widget:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/image-widget/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/image-widget/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Very easy to customize and absolutely position - at least in my case.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
