<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>The Forums &#187; Topic: thematic and a new widget next to the header?</title>
		<link>http://www.cozmoslabs.com/forums/topic/thematic-and-a-new-widget-next-to-the-header</link>
		<description>Help In Rapid Theme Development</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Sep 2010 17:15:23 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.cozmoslabs.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.cozmoslabs.com/forums/rss/topic/thematic-and-a-new-widget-next-to-the-header" rel="self" type="application/rss+xml" />

		<item>
			<title>kemilie on "thematic and a new widget next to the header?"</title>
			<link>http://www.cozmoslabs.com/forums/topic/thematic-and-a-new-widget-next-to-the-header#post-229</link>
			<pubDate>Sat, 27 Feb 2010 21:32:30 +0000</pubDate>
			<dc:creator>kemilie</dc:creator>
			<guid isPermaLink="false">229@http://www.cozmoslabs.com/forums/</guid>
			<description>&#60;p&#62;I think i (magically, I might add) have it figured out!  thank you for your suggestions and help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kemilie on "thematic and a new widget next to the header?"</title>
			<link>http://www.cozmoslabs.com/forums/topic/thematic-and-a-new-widget-next-to-the-header#post-218</link>
			<pubDate>Thu, 25 Feb 2010 03:13:59 +0000</pubDate>
			<dc:creator>kemilie</dc:creator>
			<guid isPermaLink="false">218@http://www.cozmoslabs.com/forums/</guid>
			<description>&#60;p&#62;hopefully this will work, used the backtick!  yes, I'm using a child theme (the thematic powerblog child theme).  and today I went out and upgraded to thematic 9.6 (was on 9.5) to see if that made a difference but didn't seem to... maybe I'm missing something basic though?  thanks so much!!&#60;br /&#62;
'&#60;br /&#62;
&#38;lt;?php&#60;/p&#62;
&#60;p&#62;// Load Child Theme scripts&#60;br /&#62;
// &#60;a href=&#34;http://www.cssnewbie.com/example/equal-heights/&#34; rel=&#34;nofollow&#34;&#62;http://www.cssnewbie.com/example/equal-heights/&#60;/a&#62;&#60;br /&#62;
function childtheme_scripts() { ?&#38;gt;&#60;br /&#62;
    &#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
    jQuery.noConflict();&#60;br /&#62;
    function equalHeight(group) {&#60;br /&#62;
        tallest = 0;&#60;br /&#62;
        group.each(function() {&#60;br /&#62;
            thisHeight = jQuery(this).height();&#60;br /&#62;
            if(thisHeight &#38;gt; tallest) {&#60;br /&#62;
                tallest = thisHeight;&#60;br /&#62;
            }&#60;br /&#62;
        });&#60;br /&#62;
        group.height(tallest);&#60;br /&#62;
    }&#60;br /&#62;
    jQuery(document).ready(function() {&#60;br /&#62;
        equalHeight(jQuery(&#34;.main-aside&#34;));&#60;br /&#62;
    });&#60;br /&#62;
    &#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php }&#60;br /&#62;
add_action('wp_head','childtheme_scripts');&#60;/p&#62;
&#60;p&#62;// Adds a home link to your menu&#60;br /&#62;
// &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_page_menu&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Template_Tags/wp_page_menu&#60;/a&#62;&#60;br /&#62;
function childtheme_menu_args($args) {&#60;br /&#62;
    $args = array(&#60;br /&#62;
        'show_home' =&#38;gt; 'Home',&#60;br /&#62;
        'sort_column' =&#38;gt; 'menu_order',&#60;br /&#62;
        'menu_class' =&#38;gt; 'menu',&#60;br /&#62;
        'echo' =&#38;gt; true&#60;br /&#62;
    );&#60;br /&#62;
    return $args;&#60;br /&#62;
}&#60;br /&#62;
add_filter('wp_page_menu_args','childtheme_menu_args');&#60;/p&#62;
&#60;p&#62;// Add a drop down category menu&#60;br /&#62;
function childtheme_category_menu() { if(!is_page()) { ?&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;category-access&#34;&#38;gt;&#60;br /&#62;
        &#38;lt;div id=&#34;category-menu&#34; class=&#34;menu&#34;&#38;gt;&#60;br /&#62;
            &#38;lt;div class=&#34;menu-title&#34;&#38;gt;&#38;lt;?php _e('Stores:', 'thematic'); ?&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
            &#38;lt;ul id=&#34;category-nav&#34; class=&#34;sf-menu&#34;&#38;gt;&#60;br /&#62;
                &#38;lt;?php wp_list_categories('exclude=1&#38;amp;title_li='); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;        &#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;?php } }&#60;br /&#62;
add_action('thematic_belowheader','childtheme_category_menu', 5);&#60;/p&#62;
&#60;p&#62;// Add a widgetized aside just below the header&#60;br /&#62;
function childtheme_leaderasides() { ?&#38;gt;&#60;/p&#62;
&#60;p&#62;    &#38;lt;?php if ( is_sidebar_active('1st-leader-aside') &#124;&#124; is_sidebar_active('2nd-leader-aside') &#124;&#124; is_sidebar_active('3rd-leader-aside') ) { // one of the leader asides has a widget ?&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;leader&#34;&#38;gt;&#60;br /&#62;
        &#38;lt;div id=&#34;leader-container&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;            &#38;lt;?php if ( function_exists('dynamic_sidebar') &#38;amp;&#38;amp; is_sidebar_active('1st-leader-aside') ) { // there are active widgets for this aside&#60;br /&#62;
                echo '&#38;lt;div id=&#34;first-leader&#34; class=&#34;aside sub-aside&#34;&#38;gt;'. &#34;\n&#34; . '&#38;lt;ul class=&#34;xoxo&#34;&#38;gt;' . &#34;\n&#34;;&#60;br /&#62;
                dynamic_sidebar('1st-leader-aside');&#60;br /&#62;
                echo '' . &#34;\n&#34; . '&#38;lt;/div&#38;gt;&#38;lt;!-- #first-leader .aside --&#38;gt;'. &#34;\n&#34;;&#60;br /&#62;
            } ?&#38;gt;                &#60;/p&#62;
&#60;p&#62;            &#38;lt;?php if ( function_exists('dynamic_sidebar') &#38;amp;&#38;amp; is_sidebar_active('2nd-leader-aside') ) { // there are active widgets for this aside&#60;br /&#62;
                echo '&#38;lt;div id=&#34;second-leader&#34; class=&#34;aside sub-aside&#34;&#38;gt;'. &#34;\n&#34; . '&#38;lt;ul class=&#34;xoxo&#34;&#38;gt;' . &#34;\n&#34;;&#60;br /&#62;
                dynamic_sidebar('2nd-leader-aside');&#60;br /&#62;
                echo '' . &#34;\n&#34; . '&#38;lt;/div&#38;gt;&#38;lt;!-- #second-leader .aside --&#38;gt;'. &#34;\n&#34;;&#60;br /&#62;
            } ?&#38;gt;       &#60;/p&#62;
&#60;p&#62;            &#38;lt;?php if ( function_exists('dynamic_sidebar') &#38;amp;&#38;amp; is_sidebar_active('3rd-leader-aside') ) { // there are active widgets for this aside&#60;br /&#62;
                echo '&#38;lt;div id=&#34;third-leader&#34; class=&#34;aside sub-aside&#34;&#38;gt;'. &#34;\n&#34; . '&#38;lt;ul class=&#34;xoxo&#34;&#38;gt;' . &#34;\n&#34;;&#60;br /&#62;
                dynamic_sidebar('3rd-leader-aside');&#60;br /&#62;
                echo '' . &#34;\n&#34; . '&#38;lt;/div&#38;gt;&#38;lt;!-- #third-leader .aside --&#38;gt;'. &#34;\n&#34;;&#60;br /&#62;
            } ?&#38;gt;        &#60;/p&#62;
&#60;p&#62;        &#38;lt;/div&#38;gt;&#38;lt;!-- #leader-container --&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#38;lt;!-- #leader --&#38;gt;&#60;br /&#62;
    &#38;lt;?php } ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php }&#60;br /&#62;
add_action('thematic_belowheader','childtheme_leaderasides',6);&#60;/p&#62;
&#60;p&#62;// Add a widgetized aside above the main asides with the start of a wrapper: #sidebar&#60;br /&#62;
function childtheme_sidebarstart() { ?&#38;gt;&#60;br /&#62;
&#38;lt;div id=&#34;sidebar&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;crown&#34; class=&#34;aside crown-aside&#34;&#38;gt;&#60;br /&#62;
  	&#38;lt;ul class=&#34;xoxo&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;?php if (!function_exists('dynamic_sidebar') &#124;&#124; !dynamic_sidebar('crown-aside') ) : // begin sidebar crown widgets ?&#38;gt;&#60;/p&#62;
&#60;p&#62;      &#38;lt;li id=&#34;thematic-power-blog-subscribe&#34; class=&#34;widgetcontainer widget_thematic_power_blog_subscribe&#34;&#38;gt;&#60;br /&#62;
      	&#38;lt;h3 class=&#34;widget-title&#34;&#38;gt;&#38;lt;?php _e('Subscribe', 'thematic'); ?&#38;gt;&#38;lt;/h3&#38;gt;&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;&#60;a&#62;&#34; title=&#34;&#38;lt;?php echo wp_specialchars(get_bloginfo('name'), 1) ?&#38;gt; &#38;lt;?php _e('Site RSS feed', 'thematic'); ?&#38;gt;&#34; rel=&#34;alternate nofollow&#34; type=&#34;application/rss+xml&#34;&#38;gt;&#38;lt;?php _e('Site RSS Feed', 'thematic') ?&#38;gt;&#60;/a&#62;&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;  &#38;lt;?php endif; // end sidebar crown widgets  ?&#38;gt;&#60;/p&#62;
&#60;p&#62;  	&#38;lt;/div&#38;gt;&#38;lt;!-- #crown .aside --&#38;gt;&#60;br /&#62;
&#38;lt;?php }&#60;br /&#62;
add_action('thematic_abovemainasides','childtheme_sidebarstart');&#60;/p&#62;
&#60;p&#62;// Close div#sidebar&#60;br /&#62;
function childtheme_sidebarend() { ?&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#38;lt;!-- #sidebar --&#38;gt;&#60;br /&#62;
&#38;lt;?php }&#60;br /&#62;
add_action('thematic_belowmainasides','childtheme_sidebarend');&#60;/p&#62;
&#60;p&#62;// Add breadcrumbs above the footer if Yoast Breadcrumbs are installed&#60;br /&#62;
// &#60;a href=&#34;http://yoast.com/wordpress/breadcrumbs/&#34; rel=&#34;nofollow&#34;&#62;http://yoast.com/wordpress/breadcrumbs/&#60;/a&#62;&#60;br /&#62;
function childtheme_breadcrumbs() {&#60;br /&#62;
    if ( function_exists('yoast_breadcrumb') ) { ?&#38;gt;&#60;br /&#62;
        &#38;lt;div id=&#34;breadcrumb-nav&#34;&#38;gt;&#60;br /&#62;
            &#38;lt;div id=&#34;breadcrumb-nav-container&#34;&#38;gt;      &#60;/p&#62;
&#60;p&#62;                	&#38;lt;?php yoast_breadcrumb('&#38;lt;p id=&#34;breadcrumbs&#34;&#38;gt;','&#38;lt;/p&#38;gt;'); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;            &#38;lt;/div&#38;gt;&#38;lt;!-- #breadcrumb-nav-container --&#38;gt;&#60;br /&#62;
        &#38;lt;/div&#38;gt;&#38;lt;!-- #breadcrumb-nav-container --&#38;gt;&#60;br /&#62;
    &#38;lt;?php }&#60;br /&#62;
}&#60;br /&#62;
add_action('thematic_abovefooter','childtheme_breadcrumbs',5);&#60;/p&#62;
&#60;p&#62;// Add Thematic Power Blog Subscribe Widget&#60;br /&#62;
function thematic_power_blog_subscribe() { ?&#38;gt;&#60;br /&#62;
    &#38;lt;li id=&#34;thematic-power-blog-subscribe&#34; class=&#34;widgetcontainer widget_thematic_power_blog_subscribe&#34;&#38;gt;&#60;br /&#62;
    	&#38;lt;h3 class=&#34;widget-title&#34;&#38;gt;&#38;lt;?php _e('Subscribe', 'thematic'); ?&#38;gt;&#38;lt;/h3&#38;gt;&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;&#60;a&#62;&#34; title=&#34;&#38;lt;?php echo wp_specialchars(get_bloginfo('name'), 1) ?&#38;gt; &#38;lt;?php _e('Site RSS feed', 'thematic'); ?&#38;gt;&#34; rel=&#34;alternate nofollow&#34; type=&#34;application/rss+xml&#34;&#38;gt;&#38;lt;?php _e('Site RSS Feed', 'thematic') ?&#38;gt;&#60;/a&#62;&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;&#38;lt;?php }&#60;/p&#62;
&#60;p&#62;// Register new widgetized areaa and the new widgets&#60;br /&#62;
function childtheme_widgets_init() {&#60;/p&#62;
&#60;p&#62;    // Register new widgetized areaa&#60;br /&#62;
    register_sidebar(array(&#60;br /&#62;
        'name' =&#38;gt; 'Crown Aside',&#60;br /&#62;
        'id' =&#38;gt; 'crown-aside',&#60;br /&#62;
        'before_widget' =&#38;gt; '&#38;lt;li id=&#34;%1$s&#34; class=&#34;widgetcontainer %2$s&#34;&#38;gt;',&#60;br /&#62;
        'after_widget' =&#38;gt; &#34;&#34;,&#60;br /&#62;
        'before_title' =&#38;gt; &#34;&#38;lt;h3 class=\&#34;widgettitle\&#34;&#38;gt;&#34;,&#60;br /&#62;
        'after_title' =&#38;gt; &#34;&#38;lt;/h3&#38;gt;\n&#34;,&#60;br /&#62;
    ));  &#60;/p&#62;
&#60;p&#62;    register_sidebar(array(&#60;br /&#62;
       	'name' =&#38;gt; '1st leader Aside',&#60;br /&#62;
       	'id' =&#38;gt; '1st-leader-aside',&#60;br /&#62;
       	'before_widget' =&#38;gt; '&#38;lt;li id=&#34;%1$s&#34; class=&#34;widgetcontainer %2$s&#34;&#38;gt;',&#60;br /&#62;
       	'after_widget' =&#38;gt; &#34;&#34;,&#60;br /&#62;
		'before_title' =&#38;gt; &#34;&#38;lt;h3 class=\&#34;widgettitle\&#34;&#38;gt;&#34;,&#60;br /&#62;
		'after_title' =&#38;gt; &#34;&#38;lt;/h3&#38;gt;\n&#34;,&#60;br /&#62;
    ));  &#60;/p&#62;
&#60;p&#62;    register_sidebar(array(&#60;br /&#62;
       	'name' =&#38;gt; '2nd leader Aside',&#60;br /&#62;
       	'id' =&#38;gt; '2nd-leader-aside',&#60;br /&#62;
       	'before_widget' =&#38;gt; '&#38;lt;li id=&#34;%1$s&#34; class=&#34;widgetcontainer %2$s&#34;&#38;gt;',&#60;br /&#62;
       	'after_widget' =&#38;gt; &#34;&#34;,&#60;br /&#62;
		'before_title' =&#38;gt; &#34;&#38;lt;h3 class=\&#34;widgettitle\&#34;&#38;gt;&#34;,&#60;br /&#62;
		'after_title' =&#38;gt; &#34;&#38;lt;/h3&#38;gt;\n&#34;,&#60;br /&#62;
    ));  &#60;/p&#62;
&#60;p&#62;    register_sidebar(array(&#60;br /&#62;
       	'name' =&#38;gt; '3rd leader Aside',&#60;br /&#62;
       	'id' =&#38;gt; '3rd-leader-aside',&#60;br /&#62;
       	'before_widget' =&#38;gt; '&#38;lt;li id=&#34;%1$s&#34; class=&#34;widgetcontainer %2$s&#34;&#38;gt;',&#60;br /&#62;
       	'after_widget' =&#38;gt; &#34;&#34;,&#60;br /&#62;
		'before_title' =&#38;gt; &#34;&#38;lt;h3 class=\&#34;widgettitle\&#34;&#38;gt;&#34;,&#60;br /&#62;
		'after_title' =&#38;gt; &#34;&#38;lt;/h3&#38;gt;\n&#34;,&#60;br /&#62;
    ));  &#60;/p&#62;
&#60;p&#62;    // Register the new widgets&#60;br /&#62;
    register_sidebar_widget('Thematic Power Blog Subscribe', 'thematic_power_blog_subscribe');&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
add_action( 'init', 'childtheme_widgets_init' );  &#60;/p&#62;
&#60;p&#62;?&#38;gt;&#60;br /&#62;
'
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cristian on "thematic and a new widget next to the header?"</title>
			<link>http://www.cozmoslabs.com/forums/topic/thematic-and-a-new-widget-next-to-the-header#post-215</link>
			<pubDate>Wed, 24 Feb 2010 10:01:30 +0000</pubDate>
			<dc:creator>cristian</dc:creator>
			<guid isPermaLink="false">215@http://www.cozmoslabs.com/forums/</guid>
			<description>&#60;p&#62;yes, that's what they meant :) &#60;/p&#62;
&#60;p&#62;Copy paste your functions.php file in here (also you are using a childtheme right? :) ) and I'll test is out my self.&#60;/p&#62;
&#60;p&#62;You can also put code in between backtick ( ` ) characters.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kemilie on "thematic and a new widget next to the header?"</title>
			<link>http://www.cozmoslabs.com/forums/topic/thematic-and-a-new-widget-next-to-the-header#post-214</link>
			<pubDate>Wed, 24 Feb 2010 09:18:39 +0000</pubDate>
			<dc:creator>kemilie</dc:creator>
			<guid isPermaLink="false">214@http://www.cozmoslabs.com/forums/</guid>
			<description>&#60;p&#62;thanks for the link!  so a quick question... I added the code from that to my page (the 2 php chunks to the functions.php, and the css piece to my style.css)... but I don't see a new widget!  i saw in the thread they mention something about &#34; reload wp-admin / appearance / widgets &#34; - do I need to do that?  how on earth do you do that?  I'm guessing they don't just mean hit the refresh button on the browser - I tried that!!&#60;/p&#62;
&#60;p&#62;thank you!  :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cristian on "thematic and a new widget next to the header?"</title>
			<link>http://www.cozmoslabs.com/forums/topic/thematic-and-a-new-widget-next-to-the-header#post-212</link>
			<pubDate>Tue, 23 Feb 2010 11:10:42 +0000</pubDate>
			<dc:creator>cristian</dc:creator>
			<guid isPermaLink="false">212@http://www.cozmoslabs.com/forums/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Chris from Themeshaper forums had written an excellent tutorial for exactly this issue:&#60;br /&#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;/p&#62;
&#60;p&#62;I couldn't have written something better my self.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kemilie on "thematic and a new widget next to the header?"</title>
			<link>http://www.cozmoslabs.com/forums/topic/thematic-and-a-new-widget-next-to-the-header#post-211</link>
			<pubDate>Tue, 23 Feb 2010 02:16:46 +0000</pubDate>
			<dc:creator>kemilie</dc:creator>
			<guid isPermaLink="false">211@http://www.cozmoslabs.com/forums/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;whenever I do searches on all my many thematic questions I always seem to end up here at cozmoslabs - thank you for all the brilliant coding you do to help all of us who are too new with word press/css/etc... :-)&#60;/p&#62;
&#60;p&#62;i'm wondering if you know of a way to add a widget next to my header?  my website is here: &#60;a href=&#34;http://www.hawaiicoupondiva.com&#34; rel=&#34;nofollow&#34;&#62;http://www.hawaiicoupondiva.com&#60;/a&#62;.  i made the header only 500 pixels wide, and then aligned it to the left.  i'd like to put my &#34;subscribe to our facebook/twitter/rss&#34; buttons in a widget right NEXT to the header, so i can use that empty white space, but I have no idea how to do it.&#60;/p&#62;
&#60;p&#62;any help would be so appreciated!  thanks for your thoughts!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
