<?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: Recent Posts</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 04 Feb 2012 03:30:38 +0000</pubDate>

<item>
<title>memzoomvn on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25176</link>
<pubDate>Sat, 04 Feb 2012 03:19:50 +0000</pubDate>
<dc:creator>memzoomvn</dc:creator>
<guid isPermaLink="false">25176@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think the problem rests with the asides styling. I seem to be able to highlight everything properly, but I'll take a look at it in a bit to see if I can fix anything.like &#60;a href=&#34;http://langtham.com.vn&#34; rel=&#34;nofollow&#34;&#62;http://langtham.com.vn&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "previous link in category showing same current posts"</title>
<link>http://themeshaper.com/forums/topic/previous-link-in-category-showing-same-current-posts#post-25174</link>
<pubDate>Sat, 04 Feb 2012 01:38:59 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25174@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;@laststraw - is that a page template?  what are you trying to do?  is this loop a second query?&#60;/p&#62;
&#60;p&#62;though my first guess is you need to reset the query with &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;wp_reset_query();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;after you're done w/ it
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "HTML5 Boilerplate Header with Thematic"</title>
<link>http://themeshaper.com/forums/topic/html5-boilerplate-header-with-thematic#post-25173</link>
<pubDate>Sat, 04 Feb 2012 00:55:51 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">25173@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;To get the Modernizr script, go make a custom build &#60;a href=&#34;http://www.modernizr.com/download/&#34;&#62;here&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Add this snippet to functions.php&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// script manager template for deregestering and registering scripts.
function childtheme_script_manager() {

	// wp_enqueue_script template ( $handle, $src, $deps, $ver, $in_footer );

	// deregister standard jquery
	wp_deregister_script(&#38;#39;jquery&#38;#39;);
	// loads modernizr-js script, local path, no dependency, no version, loads in header
	wp_enqueue_script(&#38;#39;modernizr-js&#38;#39;, get_bloginfo(&#38;#39;stylesheet_directory&#38;#39;) . &#38;#39;/js/modernizr.js&#38;#39;);
	// loads jqery script, from google cdn url, no dependency, yes version, loads in footer
	wp_enqueue_script(&#38;#39;jquery&#38;#39;, (&#38;quot;http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js&#38;quot;), false, &#38;#39;1.7.1&#38;#39;, true);

	}
add_action(&#38;#39;wp_enqueue_scripts&#38;#39;, &#38;#39;childtheme_script_manager&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Put the script in a folder of /js/ in your child theme, name the script modernizr.js. &#60;/p&#62;
&#60;p&#62;The little snippet above will also turn off the normal jQuery that comes with WP/Thematic and instead load it from the Google CDN which will be enqueued in the footer. Modernizr however will be loaded in the head as required in the docs. For more info/links, check &#60;a href=&#34;http://scottnix.com/2012/adding-modernizr-to-thematic/&#34;&#62;my post.&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>lastraw on "previous link in category showing same current posts"</title>
<link>http://themeshaper.com/forums/topic/previous-link-in-category-showing-same-current-posts#post-25172</link>
<pubDate>Fri, 03 Feb 2012 23:31:43 +0000</pubDate>
<dc:creator>lastraw</dc:creator>
<guid isPermaLink="false">25172@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks middle sister (5 months later!) but I'm not sure how this would integrate with the code that's there  now? &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

    // calling the header.php
    get_header();

?&#38;gt;

&#38;lt;div id=&#38;quot;box-wide&#38;quot;&#38;gt;
&#38;lt;?php query_posts(&#38;#39;category_name=life&#38;#39;); ?&#38;gt;

&#38;lt;?php if(have_posts()) : ?&#38;gt;&#38;lt;?php while(have_posts()) : the_post(); ?&#38;gt;

&#38;lt;div class=&#38;quot;post&#38;quot;&#38;gt;

&#38;lt;h3&#38;gt;&#38;lt;a&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h3&#38;gt;

&#38;lt;div class=&#38;quot;entry&#38;quot;&#38;gt;

&#38;lt;?php the_content(); ?&#38;gt;

&#38;lt;/div&#38;gt;

&#38;lt;/div&#38;gt;

&#38;lt;?php endwhile; ?&#38;gt;
&#38;lt;?php endif; ?&#38;gt;

&#38;lt;div class=&#38;quot;navigation&#38;quot;&#38;gt;

&#38;lt;?php global $wp_query; $total_pages = $wp_query-&#38;gt;max_num_pages; if ( $total_pages &#38;gt; 1 ) { ?&#38;gt;
				&#38;lt;div id=&#38;quot;nav-below&#38;quot; class=&#38;quot;navigation&#38;quot;&#38;gt;
					&#38;lt;div class=&#38;quot;nav-previous&#38;quot;&#38;gt;&#38;lt;?php next_posts_link(__( &#38;#39;&#38;lt;span class=&#38;quot;meta-nav&#38;quot;&#38;gt;&#38;amp;larr;&#38;lt;/span&#38;gt; Older posts&#38;#39; )) ?&#38;gt;&#38;lt;/div&#38;gt;
					&#38;lt;div class=&#38;quot;nav-next&#38;quot;&#38;gt;&#38;lt;?php previous_posts_link(__( &#38;#39;Newer posts &#38;lt;span class=&#38;quot;meta-nav&#38;quot;&#38;gt;&#38;amp;rarr;&#38;lt;/span&#38;gt;&#38;#39; )) ?&#38;gt;&#38;lt;/div&#38;gt;
				&#38;lt;/div&#38;gt;&#38;lt;!-- #nav-below --&#38;gt;
&#38;lt;?php } ?&#38;gt;		

&#38;lt;/div&#38;gt;

&#38;lt;/div&#38;gt;

&#38;lt;?php get_footer(); ?&#38;gt;

&#38;lt;/body&#38;gt;

&#38;lt;/html&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>bigdanprice on "Need some help, Im looking for a plugin."</title>
<link>http://themeshaper.com/forums/topic/need-some-help-im-looking-for-a-plugin#post-25171</link>
<pubDate>Fri, 03 Feb 2012 15:15:22 +0000</pubDate>
<dc:creator>bigdanprice</dc:creator>
<guid isPermaLink="false">25171@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks so much! Fantastic and full reply!&#60;/p&#62;
&#60;p&#62;I feared I would have to code it myself! I will post back here the solution Ive come up with, for now I will mark it as a resolved.&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Dan
&#60;/p&#62;</description>
</item>
<item>
<title>tonydjukic on "WP e-Commerce 3.8 - anyone noticing a clash with Thematic?"</title>
<link>http://themeshaper.com/forums/topic/wp-e-commerce-38-anyone-noticing-a-clash-with-thematic#post-25170</link>
<pubDate>Fri, 03 Feb 2012 14:46:35 +0000</pubDate>
<dc:creator>tonydjukic</dc:creator>
<guid isPermaLink="false">25170@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This is better than the one I saw because it won't be effected by their updates, since it's in my functions.php.&#60;/p&#62;
&#60;p&#62;Brilliant, thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>middlesister on "WP e-Commerce 3.8 - anyone noticing a clash with Thematic?"</title>
<link>http://themeshaper.com/forums/topic/wp-e-commerce-38-anyone-noticing-a-clash-with-thematic#post-25169</link>
<pubDate>Fri, 03 Feb 2012 14:44:44 +0000</pubDate>
<dc:creator>middlesister</dc:creator>
<guid isPermaLink="false">25169@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;There has been several people reporting the missing sidebar issue before and this has to do with WP e-commerce and the way they have coded their templates. I have seen threads at their forum reporting the issue too, as well as various hacky workarounds with limited success.&#60;/p&#62;
&#60;p&#62;Luckily, I just recently saw that someone had dug out the reason for the conflict and reported it at Thematic's googlecode as a bug, though there is nothing wrong with Thematic. He/she had contacted the WP e-commerce team but they were not inclined to fix it on their side. &#60;/p&#62;
&#60;p&#62;The solution: remove a WP e-commerce function from a hook and reattach it with a lower priority so that it will fire after the sidebars has been set up. Add this in your child theme's functions.php file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function switch_ecommerce_actions() {
	remove_action(&#38;#39;template_redirect&#38;#39;, &#38;#39;wpsc_all_products_on_page&#38;#39;);
	add_action(&#38;#39;template_redirect&#38;#39;, &#38;#39;wpsc_all_products_on_page&#38;#39;, 20);
}
add_action(&#38;#39;init&#38;#39;,&#38;#39;switch_ecommerce_actions&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This is because &#34;&#60;code&#62;wpsc_all_products_on_page&#60;/code&#62;&#34; does an &#34;&#60;code&#62;exit&#60;/code&#62;&#34; at the end, thereby stopping any execution after it. By giving this function a lesser priority, we make sure Thematic can set up it's sidebars first.&#60;/p&#62;
&#60;p&#62;If you are a member of their forum, maybe you could post the solution there as well? I think there are many people that would benefit from this.
&#60;/p&#62;</description>
</item>
<item>
<title>kidslovemusic on "Dropdown menu Z-index"</title>
<link>http://themeshaper.com/forums/topic/dropdown-menu-z-index#post-25165</link>
<pubDate>Fri, 03 Feb 2012 14:02:07 +0000</pubDate>
<dc:creator>kidslovemusic</dc:creator>
<guid isPermaLink="false">25165@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Pictrix, thank you!!!! This is amazing :) thank you, you saved my project :)))) !
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Need some help, Im looking for a plugin."</title>
<link>http://themeshaper.com/forums/topic/need-some-help-im-looking-for-a-plugin#post-25164</link>
<pubDate>Fri, 03 Feb 2012 13:49:38 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25164@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;gotta love it when the clients insist on terrible ideas.  i've never seen anything that does this and have seen my fair share of jquery plugins, so my guess is you will have to do scripting yourself.  i'd probably try to find a slider that has events/callbacks (my scripting vocab isn't the top) and run a function that fires the sound on the change slide event.  &#60;/p&#62;
&#60;p&#62;for instance, if you take a look at nivo slider&#60;br /&#62;
&#60;a href=&#34;http://nivo.dev7studios.com/support/jquery-plugin-usage/&#34; rel=&#34;nofollow&#34;&#62;http://nivo.dev7studios.com/support/jquery-plugin-usage/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the plugin comes w/ some options that would be relevant&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;beforeChange: function(){}, // Triggers before a slide transition
afterChange: function(){}, // Triggers after a slide transition
slideshowEnd: function(){}, // Triggers after all slides have been shown
lastSlide: function(){}, // Triggers when last slide is shown
afterLoad: function(){} // Triggers when slider has loaded
});&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you could hook up the sound playing function to before or afterChange, wrapped in conditional logic that tests for a variable.  change that &#34;flag&#34; variable in slideshowEnd or lastSlide so that the next time around the sound function isn't triggered.  &#60;/p&#62;
&#60;p&#62;never tried this, but it might be adaptable to your needs:&#60;br /&#62;
&#60;a href=&#34;http://css-tricks.com/play-sound-on-hover/&#34; rel=&#34;nofollow&#34;&#62;http://css-tricks.com/play-sound-on-hover/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;also, i loathe unanticipated sound on the web.  roar.
&#60;/p&#62;</description>
</item>
<item>
<title>bigdanprice on "Child Theme and commercial usage"</title>
<link>http://themeshaper.com/forums/topic/child-theme-and-commercial-usage#post-25163</link>
<pubDate>Fri, 03 Feb 2012 12:55:58 +0000</pubDate>
<dc:creator>bigdanprice</dc:creator>
<guid isPermaLink="false">25163@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I use my child themes commercially but I always include a tip of the hat to thematic, and try to give back to the community where I can!
&#60;/p&#62;</description>
</item>
<item>
<title>bigdanprice on "Need some help, Im looking for a plugin."</title>
<link>http://themeshaper.com/forums/topic/need-some-help-im-looking-for-a-plugin#post-25162</link>
<pubDate>Fri, 03 Feb 2012 12:43:55 +0000</pubDate>
<dc:creator>bigdanprice</dc:creator>
<guid isPermaLink="false">25162@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi All,&#60;br /&#62;
Ive got a client that wants an image slider with an audio clip on the image change, but only for the first round of images... anyone got any thoughts on this? There must be a plugin out there that can do it, but Im at a loss after trawling through hundreds of offerings! (Im trying to avoid flash if possible)&#60;/p&#62;
&#60;p&#62;I was thinking as an ugly hack I could go back to the 1997 web and play the audio clip timed to the image change but want to avoid this...&#60;/p&#62;
&#60;p&#62;Ive even tried explaining that noises on websites are annoying, but they're adamant!&#60;/p&#62;
&#60;p&#62;Can you help me Themeshaper forums? Your my only hope!
&#60;/p&#62;</description>
</item>
<item>
<title>bigdanprice on "Adding non-widget content to sidebars (asides)"</title>
<link>http://themeshaper.com/forums/topic/adding-non-widget-content-to-sidebars-asides#post-25161</link>
<pubDate>Fri, 03 Feb 2012 12:33:25 +0000</pubDate>
<dc:creator>bigdanprice</dc:creator>
<guid isPermaLink="false">25161@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Great stuff, its the beauty of hooks and thematic!
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "Can I remove container div?"</title>
<link>http://themeshaper.com/forums/topic/can-i-remove-container-div#post-25160</link>
<pubDate>Fri, 03 Feb 2012 04:07:46 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">25160@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#34;wondering if there is any SEO implication to divs with no spec&#34;.&#60;/p&#62;
&#60;p&#62;Nope, while a well structured page is important, a div doesn't mean anything, it would be exactly the same as an empty span tag, it has no real structural meaning, like an h1 or newer HTML5 tags. Sooooo many pages have what could be deemed extra markup. Now if you had a few empty &#38;lt;h1&#38;gt;'s laying around, maybe? But probably not. ;P&#60;/p&#62;
&#60;p&#62;If you wanted clean code there are a bunch of other things you can do to still, like combine the drop down scripts and move them to the footer, move jquery script also to the footer, remove the link rel edituri and wlwmanifest because I have yet to see them used for anything, remove the index, follow on main pages, because it is after all the friggin default.
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Can I remove container div?"</title>
<link>http://themeshaper.com/forums/topic/can-i-remove-container-div#post-25158</link>
<pubDate>Fri, 03 Feb 2012 03:41:21 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25158@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yeah, thanks. Doesn't seem necessary. I just kinda got obsessed with cleaning up my code. Works great as is.&#60;/p&#62;
&#60;p&#62;Thanks again.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Can I remove container div?"</title>
<link>http://themeshaper.com/forums/topic/can-i-remove-container-div#post-25156</link>
<pubDate>Fri, 03 Feb 2012 01:59:47 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25156@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;well #main is in header.php and #container is in index.php and its cousin-templates.  so you couldn't really do it as a child theme unless you wanted to create your own version of all those templates.  and at that point, you may as well fork thematic.
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Can I remove container div?"</title>
<link>http://themeshaper.com/forums/topic/can-i-remove-container-div#post-25155</link>
<pubDate>Fri, 03 Feb 2012 01:32:55 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25155@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Never mind, I think. Been doing some reading and it seems it would not be a good idea to remove container or main divs. I've just emptied them instead in css. Am wondering if there is any SEO implication to divs with no spec. Hmmm.
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Can I remove container div?"</title>
<link>http://themeshaper.com/forums/topic/can-i-remove-container-div#post-25154</link>
<pubDate>Thu, 02 Feb 2012 23:24:47 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">25154@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK, I know I'm a bit obsessed, but I've been spending a day or so learning Compass and SASS (which rocks, BTW) and my self imposed exile was to: &#60;/p&#62;
&#60;p&#62;1) Create an easily modified Holy Grail 3 column fluid/fixed layout with equal height columns in Compass SASS. Done! ==&#38;gt; &#60;a href=&#34;http://grafiks101.com/holy-grail/&#34; rel=&#34;nofollow&#34;&#62;http://grafiks101.com/holy-grail/&#60;/a&#62; OK, that was fun.&#60;/p&#62;
&#60;p&#62;2) Quickly create a thematic site using the same code. Done! ==&#38;gt; &#60;a href=&#34;http://grafiks101.com/dev/&#34; rel=&#34;nofollow&#34;&#62;http://grafiks101.com/dev/&#60;/a&#62; Really, that was *a lot* easier than I though it would be and a *whole* lot easier than the brute force approach I took the first time. Pretty much a drop in replacement of css.&#60;/p&#62;
&#60;p&#62;Going forward, I now want to clean it up a bit. I seem to have a case of divitis. I really don't need &#34;container&#34; or even &#34;main&#34; for that matter. I'm really not sure how to properly dispose of them and what damage I might cause with brute force. Can I, should I do it or leave well enough alone?&#60;/p&#62;
&#60;p&#62;I should also say, that this wasn't just an exercise. I had a [wordpress] project  which required a pixel perfect 3 column layout to a &#34;designed to the fold&#34; print layout.  The Holy Grail 3 column layout was exactly what I needed and Thematic made it possible. Now I would like to streamline the process for the next time...&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "adding shortcode"</title>
<link>http://themeshaper.com/forums/topic/adding-shortcode#post-25153</link>
<pubDate>Thu, 02 Feb 2012 22:28:57 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25153@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;well get you got it sorted. thanks for sharing it.
&#60;/p&#62;</description>
</item>
<item>
<title>Mike_sa on "adding shortcode"</title>
<link>http://themeshaper.com/forums/topic/adding-shortcode#post-25152</link>
<pubDate>Thu, 02 Feb 2012 21:20:26 +0000</pubDate>
<dc:creator>Mike_sa</dc:creator>
<guid isPermaLink="false">25152@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Helga &#60;/p&#62;
&#60;p&#62;Thanks very much for the reply.&#60;br /&#62;
It is a very small part of a larger plugin, that I am still working on... I managed to get it working thanks ..... &#60;/p&#62;
&#60;p&#62;the working code for the shortcode :)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function portfolio($atts, $content = null) {
extract(shortcode_atts(array(
	&#38;quot;category&#38;quot; =&#38;gt;&#38;#39;&#38;#39;,
	&#38;quot;number&#38;quot; =&#38;gt;&#38;#39;&#38;#39;,
	&#38;quot;slug&#38;quot; =&#38;gt;&#38;#39;&#38;#39;,
	), $atts));
// loop for array of portfolio
	// add call for query
						$args = array(&#38;#39;orderby&#38;#39; =&#38;gt; &#38;#39;title&#38;#39;,
									  &#38;#39;order&#38;#39; =&#38;gt; &#38;#39;date&#38;#39;,
									  &#38;#39;posts_per_page&#38;#39; =&#38;gt; $number,

									  &#38;#39;tax_query&#38;#39; =&#38;gt; array(
												array(
												&#38;#39;taxonomy&#38;#39; =&#38;gt; $category,
												&#38;#39;field&#38;#39; =&#38;gt; &#38;#39;slug&#38;#39;,
												&#38;#39;terms&#38;#39; =&#38;gt; $slug,
																	)));

$query = new WP_Query( $args );
// The Loop
while ( $query-&#38;gt;have_posts() ) : $query-&#38;gt;the_post();
	echo &#38;#39;&#38;lt;div class=&#38;quot;mosaic-block bar&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39;;
	 the_permalink();
	 echo &#38;#39;&#38;quot; target=&#38;quot;_blank&#38;quot; class=&#38;quot;mosaic-overlay&#38;quot;&#38;gt;&#38;lt;div class=&#38;quot;details&#38;quot;&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;lt;h4&#38;gt;&#38;#39;;
	the_title();
	echo &#38;#39;&#38;lt;/h4&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;#39;;
	the_content();
	echo &#38;#39;
&#38;lt;/div&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;lt;div class=&#38;quot;mosaic-backdrop&#38;quot;&#38;gt;&#38;#39;;
	 the_post_thumbnail();
	 echo &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
endwhile;

// Reset Post Data
wp_reset_postdata();
}
add_shortcode(&#38;#39;port&#38;#39;, &#38;#39;portfolio&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks for the input
&#60;/p&#62;</description>
</item>
<item>
<title>bluejpro on "Adding non-widget content to sidebars (asides)"</title>
<link>http://themeshaper.com/forums/topic/adding-non-widget-content-to-sidebars-asides#post-25151</link>
<pubDate>Thu, 02 Feb 2012 20:09:40 +0000</pubDate>
<dc:creator>bluejpro</dc:creator>
<guid isPermaLink="false">25151@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Wow, Chris&#60;/p&#62;
&#60;p&#62;Thanks for giving this back!  You have provided a really cool possible solution to my own situation.  I have a bit of code via functions.php that shows above the content.  It  now needs to go into the sidebar, but there's no widget for this thing.&#60;/p&#62;
&#60;p&#62;This is a very appealing solution, Thematic-friendly, and an interesting story too!&#60;/p&#62;
&#60;p&#62;I will have to see if you keep a blog somewhere.&#60;/p&#62;
&#60;p&#62;Thank you for the technique -- now to try it...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "adding shortcode"</title>
<link>http://themeshaper.com/forums/topic/adding-shortcode#post-25150</link>
<pubDate>Thu, 02 Feb 2012 15:40:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25150@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#34;variable empty and add an if statement&#34;  huh?  i don't understand what you are trying to do... or even why you'd need a shortcode to display portfolio posts.  just how often do you need to display portfolio posts?  can't you just add it to a hook?&#60;/p&#62;
&#60;p&#62;at first glance you probably can't use extract args with such a complicated array structure.  from the codex: &#60;a href=&#34;http://codex.wordpress.org/Shortcode_API&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Shortcode_API&#60;/a&#62; this is the proper way to extrac args&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// [bartag foo=&#38;quot;foo-value&#38;quot;]
function bartag_func( $atts ) {
	extract( shortcode_atts( array(
		&#38;#39;foo&#38;#39; =&#38;gt; &#38;#39;something&#38;#39;, //default value
		&#38;#39;bar&#38;#39; =&#38;gt; &#38;#39;something else&#38;#39;, //default value
	), $atts ) );

	return &#38;quot;foo = {$foo}&#38;quot;;
}
add_shortcode( &#38;#39;bartag&#38;#39;, &#38;#39;bartag_func&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;so you'd want to change foo and bar to represent number of posts, taxonomy, etc.  then use those values to build your query args.&#60;/p&#62;
&#60;p&#62;also, this isn't really a thematic question.  ;)  but i hope that helps some.
&#60;/p&#62;</description>
</item>
<item>
<title>Mike_sa on "adding shortcode"</title>
<link>http://themeshaper.com/forums/topic/adding-shortcode#post-25149</link>
<pubDate>Thu, 02 Feb 2012 14:44:02 +0000</pubDate>
<dc:creator>Mike_sa</dc:creator>
<guid isPermaLink="false">25149@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi &#60;/p&#62;
&#60;p&#62;I have written a shortcode for a plugin I am coding. &#60;/p&#62;
&#60;p&#62;I have got the shortcode working, it calls the custom post types from the custom post type I have added in the plugin. &#60;/p&#62;
&#60;p&#62;At the moment all is working well but I need to add options to the shortcode like number of posts to display, slug, taxonomy, terms ect. &#60;/p&#62;
&#60;p&#62;Below is the shortcode I have written : &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// add shortcode portfolio
function portfolio($atts, $content = null) {
	extract(shortcode_atts(array(
		// loop for array of portfolio
	// add call for query
						$args = array(&#38;#39;orderby&#38;#39; =&#38;gt; &#38;#39;title&#38;#39;,
						&#38;#39;order&#38;#39; =&#38;gt; &#38;#39;date&#38;#39;,
						&#38;#39;posts_per_page&#38;#39; =&#38;gt; 20,

	&#38;#39;tax_query&#38;#39; =&#38;gt; array(
		array(
			&#38;#39;taxonomy&#38;#39; =&#38;gt; &#38;#39;Skills&#38;#39;,
			&#38;#39;field&#38;#39; =&#38;gt; &#38;#39;slug&#38;#39;,
			&#38;#39;terms&#38;#39; =&#38;gt; &#38;#39;Web-Design&#38;#39;,
			)
	)
)
	), $atts));
	$query = new WP_Query( $args );
// The Loop
while ( $query-&#38;gt;have_posts() ) : $query-&#38;gt;the_post();
	echo &#38;#39;&#38;lt;h2&#38;gt;&#38;#39;;
	the_title();
	echo &#38;#39;&#38;lt;/h2&#38;gt;&#38;#39;;
	echo &#38;#39;&#38;#39;;
	the_content();
	echo &#38;#39;
&#38;#39;;
endwhile;

// Reset Post Data
wp_reset_postdata();

}
add_shortcode(&#38;quot;port&#38;quot;, &#38;quot;portfolio&#38;quot;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;After looking at various tuts , I need to leave the variable empty and add an if statement. I have not been able to get that part to work ... &#60;/p&#62;
&#60;p&#62;Could someone please point me in the right direction . &#60;/p&#62;
&#60;p&#62;Many thanks
&#60;/p&#62;</description>
</item>
<item>
<title>ScottNix on "Comment Bubble"</title>
<link>http://themeshaper.com/forums/topic/comment-bubble#post-25147</link>
<pubDate>Wed, 01 Feb 2012 23:54:10 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">25147@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The PHP code that goes into your functions.php file works fine for me. Did you at least see the number of comments show up?&#60;/p&#62;
&#60;p&#62;I have a feeling you missed the part that mentions the CSS he has listed is actually SASS, which is a different kind of automated way of doing CSS that requires stuff you probably don't want to get in to yet. It won't work if you just paste it into the style.css file. He however does link to the article showing how to make the comment bubbles. So you will just need to figure out what to label the CSS and you should be good.&#60;/p&#62;
&#60;p&#62;He also doesn't mention how to remove it from the post footer, with just the code from his site, you will still get the comment number in the bottom of the post (except on single pages). For that, use&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_override_postfooter() {
	global $id, $post;

	if ($post-&#38;gt;post_type == &#38;#39;page&#38;#39; &#38;#38;&#38;#38; current_user_can(&#38;#39;edit_posts&#38;#39;)) { /* For logged-in &#38;quot;page&#38;quot; search results */
		$postfooter = &#38;#39;&#38;lt;div class=&#38;quot;entry-utility&#38;quot;&#38;gt;&#38;#39; . thematic_postfooter_posteditlink();
		$postfooter .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-utility --&#38;gt;\n&#38;quot;;
	} elseif ($post-&#38;gt;post_type == &#38;#39;page&#38;#39;) { /* For logged-out &#38;quot;page&#38;quot; search results */
		$postfooter = &#38;#39;&#38;#39;;
	} else {
		if (is_single()) {
			$postfooter = &#38;#39;&#38;lt;div class=&#38;quot;entry-utility&#38;quot;&#38;gt;&#38;#39; . thematic_postfooter_postcategory() . thematic_postfooter_posttags() . thematic_postfooter_postconnect();
		} else {
			$postfooter = &#38;#39;&#38;lt;div class=&#38;quot;entry-utility&#38;quot;&#38;gt;&#38;#39; . thematic_postfooter_postcategory() . thematic_postfooter_posttags();
		}
		$postfooter .= &#38;quot;&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-utility --&#38;gt;\n&#38;quot;;
	}

	// Put it on the screen
	echo apply_filters( &#38;#39;thematic_postfooter&#38;#39;, $postfooter ); // Filter to override default post footer
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And after that, you will still have a &#60;code&#62;&#124;&#60;/code&#62; showing after the Category/Tags, so you can hide that with CSS &#60;code&#62;.meta-sep-comments-link { display: none; }&#60;/code&#62;. I would say you could remove that too, but you would have to mess with the tags function, which if you exclude tags... you will then get the same problem on the Category (which will show the tags sep). So I would just hide it with CSS to save time.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Child Theme and commercial usage"</title>
<link>http://themeshaper.com/forums/topic/child-theme-and-commercial-usage#post-25146</link>
<pubDate>Wed, 01 Feb 2012 19:55:20 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25146@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thematic is totally GPL, so you can do w/ it what you will.  so while i am not a lawyer, i think it is completely fine.  Autofocus is a good example of a premium child theme.
&#60;/p&#62;</description>
</item>
<item>
<title>wmarkusen on "Changing &#60;title&#62; layout using $doctitle"</title>
<link>http://themeshaper.com/forums/topic/changing-lttitlegt-layout-using-doctitle#post-25145</link>
<pubDate>Wed, 01 Feb 2012 19:55:07 +0000</pubDate>
<dc:creator>wmarkusen</dc:creator>
<guid isPermaLink="false">25145@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I found your post helpful in something I was trying to figure out. Thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>Jagst3r15 on "Child Theme and commercial usage"</title>
<link>http://themeshaper.com/forums/topic/child-theme-and-commercial-usage#post-25144</link>
<pubDate>Wed, 01 Feb 2012 19:22:35 +0000</pubDate>
<dc:creator>Jagst3r15</dc:creator>
<guid isPermaLink="false">25144@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there, so I am a web developer who knows quite a bit, but am just getting into WordPress development. With that being said, I have no idea about the legality of selling themes and whatnot. If I create a child theme with Thematic, am I aloud to sell the Child Theme via a place like ThemeForest or something?&#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>violetabella on "Comment Bubble"</title>
<link>http://themeshaper.com/forums/topic/comment-bubble#post-25138</link>
<pubDate>Wed, 01 Feb 2012 01:30:47 +0000</pubDate>
<dc:creator>violetabella</dc:creator>
<guid isPermaLink="false">25138@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;HI! I've been trying to implement a comment bubble to my child theme, but not having much luck. I did try this tutorial, &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://mrdanadams.com/2011/css-only-comment-count-bubble-in-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://mrdanadams.com/2011/css-only-comment-count-bubble-in-wordpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but the bubble did not show up (even on the posts with comments). &#60;/p&#62;
&#60;p&#62;Is there another way to go about doing this?
&#60;/p&#62;</description>
</item>
<item>
<title>jhismith on "How to align single navigation menu item right?"</title>
<link>http://themeshaper.com/forums/topic/how-to-align-single-navigation-menu-item-right#post-25135</link>
<pubDate>Tue, 31 Jan 2012 19:34:29 +0000</pubDate>
<dc:creator>jhismith</dc:creator>
<guid isPermaLink="false">25135@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thank you so much.
&#60;/p&#62;</description>
</item>
<item>
<title>robYardman on "How are you using Thematic?"</title>
<link>http://themeshaper.com/forums/topic/how-are-you-using-thematic/page/8#post-25132</link>
<pubDate>Tue, 31 Jan 2012 14:28:49 +0000</pubDate>
<dc:creator>robYardman</dc:creator>
<guid isPermaLink="false">25132@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Another great website made possible by Thematic:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.harrymontoyaforcongress.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.harrymontoyaforcongress.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>MikeWills on "Adding link post format to Thematic"</title>
<link>http://themeshaper.com/forums/topic/adding-link-post-format-to-thematic#post-25131</link>
<pubDate>Tue, 31 Jan 2012 14:28:04 +0000</pubDate>
<dc:creator>MikeWills</dc:creator>
<guid isPermaLink="false">25131@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I see there are WordPress hooks and Thematic hooks. I know the Thematic hooks work, but would using the WordPress hooks be better for modifying things like the title?
&#60;/p&#62;</description>
</item>
<item>
<title>zorro on "Alternate stylesheet for iPad"</title>
<link>http://themeshaper.com/forums/topic/alternate-stylesheet-for-ipad#post-25130</link>
<pubDate>Tue, 31 Jan 2012 13:47:42 +0000</pubDate>
<dc:creator>zorro</dc:creator>
<guid isPermaLink="false">25130@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;So, what happens if someone is using, say, a macbook pro or an old laptop with &#38;gt;1024px?
&#60;/p&#62;</description>
</item>
<item>
<title>crashprojects on "Can I change the width of the menu to line up with the end of my header/content?"</title>
<link>http://themeshaper.com/forums/topic/can-i-change-the-width-of-the-menu-to-line-up-with-the-end-of-my-headercontent#post-25129</link>
<pubDate>Tue, 31 Jan 2012 13:24:29 +0000</pubDate>
<dc:creator>crashprojects</dc:creator>
<guid isPermaLink="false">25129@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Helga, you're awesome!  I could kick myself right now; I knew it was going to be something easy I should have thought of myself!  FYI I learned everything I needed to know to style the menu in the first place from your thematic menus demystified post.  I have it bookmarked and refer to it all the time!  Thanks for everything! &#60;/p&#62;
&#60;p&#62;Scott, thanks for the reply.  I actually tried that yesterday and it didn't work. The menu was still cut off at the end.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding link post format to Thematic"</title>
<link>http://themeshaper.com/forums/topic/adding-link-post-format-to-thematic#post-25128</link>
<pubDate>Tue, 31 Jan 2012 13:11:09 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25128@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;not sure what you mean. your code looks correct as is.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Showing first news item as full and rest as titles"</title>
<link>http://themeshaper.com/forums/topic/showing-first-news-item-as-full-and-rest-as-titles#post-25127</link>
<pubDate>Tue, 31 Jan 2012 13:09:16 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25127@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;also if you are doing your news category that way can't you just use the overrides.... don't see why you are using a query?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;childtheme_override_category_loop(){
if(is_category(&#38;#39;news&#38;#39;)){
$counter = 0;
while (have_posts()) : the_post();
$counter++;
if ($counter == 1):
?&#38;gt;

BACON!!!

&#38;lt;?php else : ?&#38;gt;

everything else

&#38;lt;?php
endif;
endwhile;
} else {
thematic_category_loop()
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;i await your new superlatives....  maybe i will put them on my website.  ;)
&#60;/p&#62;</description>
</item>
<item>
<title>gnurf on "weekly posts listing"</title>
<link>http://themeshaper.com/forums/topic/weekly-posts-listing#post-25126</link>
<pubDate>Tue, 31 Jan 2012 12:16:27 +0000</pubDate>
<dc:creator>gnurf</dc:creator>
<guid isPermaLink="false">25126@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I hope someone can help me in the right direction with this one:&#60;/p&#62;
&#60;p&#62;Say you have some contributors writing posts about weekly happenings. One write about Monday happenings and another about Tuesday happenings and so on. These post are written a week or so in advance.&#60;/p&#62;
&#60;p&#62;How can I list all posts for a preferred week, for example current week and next week?&#60;/p&#62;
&#60;p&#62;All suggestions are welcome!&#60;/p&#62;
&#60;p&#62;-Paul
&#60;/p&#62;</description>
</item>

</channel>
</rss>

