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

<item>
<title>helgatheviking on "full post and then excerpts on category pages"</title>
<link>http://themeshaper.com/forums/topic/full-post-and-then-excerpts-on-category-pages#post-25084</link>
<pubDate>Mon, 30 Jan 2012 15:02:00 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">25084@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;cool share.  i will have to check that out, i've been wondering how to do that myself.
&#60;/p&#62;</description>
</item>
<item>
<title>petskratt on "full post and then excerpts on category pages"</title>
<link>http://themeshaper.com/forums/topic/full-post-and-then-excerpts-on-category-pages#post-25083</link>
<pubDate>Mon, 30 Jan 2012 12:06:44 +0000</pubDate>
<dc:creator>petskratt</dc:creator>
<guid isPermaLink="false">25083@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;grrreat, thanks for code sample :-)&#60;/p&#62;
&#60;p&#62;and now to answer the original question with said sample - this modification will show first post on category archive as full and rest as excerpts:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// category pages with full content

function childtheme_content( $content ) {
	global $loopcounter;
	if ( is_category() &#38;#38; !$loopcounter ) {
		$content= &#38;#39;full&#38;#39;;
		$loopcounter++;
	}
	return $content;
}

add_filter( &#38;#39;thematic_content&#38;#39;, &#38;#39;childtheme_content&#38;#39; );&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>helgatheviking on "Filtering One Category from Index Loop"</title>
<link>http://themeshaper.com/forums/topic/filtering-one-category-from-index-loop#post-24705</link>
<pubDate>Fri, 06 Jan 2012 22:25:26 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24705@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;evolving further, i like this method of hooking into pre_get_posts() the best:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Custom_Queries#Category_Exclusion&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Custom_Queries#Category_Exclusion&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;i'd probably go so far as to say this is currently the definitive method for modifying an existing/default query.  query_posts is still the perfect choice for multiple loops.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;#39;pre_get_posts&#38;#39;, &#38;#39;kia_exclude_category&#38;#39; );

function kia_exclude_category( ){
  global $wp_query;
  $excluded_id = 15;

  // only exclude on home page
  if( is_home()) {
     $wp_query-&#38;gt;query_vars[&#38;#39;cat&#38;#39;] = &#38;#39;-&#38;#39; . $excluded_id;
  }
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Sabra on "Category archive showing wrong posts"</title>
<link>http://themeshaper.com/forums/topic/category-archive-showing-wrong-posts#post-24302</link>
<pubDate>Wed, 14 Dec 2011 12:47:39 +0000</pubDate>
<dc:creator>Sabra</dc:creator>
<guid isPermaLink="false">24302@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi everyone,&#60;/p&#62;
&#60;p&#62;I have a child theme based on Thematic and just noticed that my category archive is showing the wrong posts, not the posts that are in the category. Does anyone know what going on here? I haven't altered or copied the category.php file.&#60;/p&#62;
&#60;p&#62;Take care,&#60;br /&#62;
Sabra
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "is it possible organize some posts alphabetically, others by date?"</title>
<link>http://themeshaper.com/forums/topic/is-it-possible-organize-some-posts-alphabetically-others-by-date#post-24087</link>
<pubDate>Sat, 03 Dec 2011 17:07:27 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24087@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you functions.php &#60;em&#62;is&#60;/em&#62; a plugin of sorts.  it interacts with the WP core as well as with thematic.  it was only meant as &#60;em&#62;example&#60;/em&#62; code.&#60;/p&#62;
&#60;p&#62;yes, storing a group of data into 1 variable is an array and in your case would be more efficient/elegant than any other way of coding it. you can see that is_category() does accept an array in the Codex.  SO much information there&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Conditional_Tags#A_Category_Page&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Conditional_Tags#A_Category_Page&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;and you should bookmark the conditional logic page b/c i can almost guarantee you'll need it a lot.  i do.
&#60;/p&#62;</description>
</item>
<item>
<title>onelittlemoose on "is it possible organize some posts alphabetically, others by date?"</title>
<link>http://themeshaper.com/forums/topic/is-it-possible-organize-some-posts-alphabetically-others-by-date#post-24086</link>
<pubDate>Sat, 03 Dec 2011 15:40:35 +0000</pubDate>
<dc:creator>onelittlemoose</dc:creator>
<guid isPermaLink="false">24086@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;That's a relief, that I don't have to write a plugin. &#60;/p&#62;
&#60;p&#62;Now here's my next question: in my case there are multiple categories that I want to organize alphabetically. About 15 at the moment, likely more to add (it's a directory).   Would it make sense to pile those categories up into one variable - it think that's called an &#34;array&#34;?  (don't know how to do that yet, but working thru the logic)&#60;/p&#62;
&#60;p&#62;Many thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "is it possible organize some posts alphabetically, others by date?"</title>
<link>http://themeshaper.com/forums/topic/is-it-possible-organize-some-posts-alphabetically-others-by-date#post-24076</link>
<pubDate>Fri, 02 Dec 2011 22:54:48 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24076@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;&#34;For our first example, let's consider a glossary plugin that will let the site owner put posts in a specific &#34;glossary&#34; category (saved by the plugin in global variable $gloss_category). &#34;&#60;/p&#62;
&#60;p&#62;which is saying that somewhere in the plugin settings (b/c this example presumes a plugin) this variable is defined.  if you aren't writing a plugin, you can simply define the variable right there ($gloss_category = 'bacon') or eliminate it completely.  for instance:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if( is_category( &#38;#39;bacon&#38;#39; )) {
     // alphabetical order by post title
     return &#38;quot;post_title ASC&#38;quot;;
  }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;which will only effect the bacon category.
&#60;/p&#62;</description>
</item>
<item>
<title>onelittlemoose on "is it possible organize some posts alphabetically, others by date?"</title>
<link>http://themeshaper.com/forums/topic/is-it-possible-organize-some-posts-alphabetically-others-by-date#post-24069</link>
<pubDate>Fri, 02 Dec 2011 21:45:06 +0000</pubDate>
<dc:creator>onelittlemoose</dc:creator>
<guid isPermaLink="false">24069@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I fear I've run into a wall. Baffled. Going with custom query here in the codex&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Custom_Queries#Display_Order_and_Post_Count_Limit&#34;&#62;http://codex.wordpress.org/Custom_Queries#Display_Order_and_Post_Count_Limit&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;In general, the concept makes sense, but I get caught on the specifics.&#60;/p&#62;
&#60;p&#62;I've also read the preamble. My first question how does the global variable $gloss_category know which category it refers to? Would I need to add a category in the admin section called &#34;gloss&#34; or &#34;gloss_category&#34;?  Or is that global variable defined previously in the plugin they refer to?  And does that mean I need to write a plugin first? (I hope not)&#60;/p&#62;
&#60;p&#62;Would I also need to &#34;hook&#34; it somewhere in a way specific to thematic?&#60;/p&#62;
&#60;p&#62;I have more questions that lead to more bafflement, but let's start with this. Baby steps.&#60;/p&#62;
&#60;p&#62;Much thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>onelittlemoose on "is it possible organize some posts alphabetically, others by date?"</title>
<link>http://themeshaper.com/forums/topic/is-it-possible-organize-some-posts-alphabetically-others-by-date#post-24042</link>
<pubDate>Thu, 01 Dec 2011 23:08:11 +0000</pubDate>
<dc:creator>onelittlemoose</dc:creator>
<guid isPermaLink="false">24042@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Very cool. I think this is what I am looking for. Problem solved for now, although I will probably be back as I try to bumble through it. &#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "is it possible organize some posts alphabetically, others by date?"</title>
<link>http://themeshaper.com/forums/topic/is-it-possible-organize-some-posts-alphabetically-others-by-date#post-24035</link>
<pubDate>Thu, 01 Dec 2011 18:29:38 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24035@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yeah, check out the codex&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Custom_Queries#Display_Order_and_Post_Count_Limit&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Custom_Queries#Display_Order_and_Post_Count_Limit&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>onelittlemoose on "is it possible organize some posts alphabetically, others by date?"</title>
<link>http://themeshaper.com/forums/topic/is-it-possible-organize-some-posts-alphabetically-others-by-date#post-24034</link>
<pubDate>Thu, 01 Dec 2011 16:08:05 +0000</pubDate>
<dc:creator>onelittlemoose</dc:creator>
<guid isPermaLink="false">24034@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm looking for some direction before undertaking this... insights welcome. &#60;/p&#62;
&#60;p&#62;I'm building a site that is going to be mainly a directory, but with an option for blogging. So far the directory has 5 categories, and those will each have at least 4 subcategories. I would want these to be organized alphabetically. I would also not want any of these posts to appear on the home page, even if they are the most recent.&#60;/p&#62;
&#60;p&#62;For the blog part, my thinking is to have this as a separate category, with subcategories as needed. These posts I would want to organize by date. In turn, these are the ones I would want to appear on the home page, although there may not be any of these posts to start with.&#60;/p&#62;
&#60;p&#62;So,&#60;br /&#62;
1) is this possible, to have some categories organized by date, others alphabetically?&#60;br /&#62;
2) if it is possible, is this a stupid idea? Is organizing the difference based on categories the right way to do it? And where do I start?&#60;/p&#62;
&#60;p&#62;Not looking for the full code, but looking for direction and insight. I'd like to figure out how to do this, assuming it's not fraught with issues, because I think there will be a few other sites I build this way as well. &#60;/p&#62;
&#60;p&#62;Many thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-24018</link>
<pubDate>Wed, 30 Nov 2011 15:55:26 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24018@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;why are you are manually calling the widget.  the readme.txt (always a good idea to check out) says to do so if your theme doesn't support widgets.  thematic has something like 13 widget areas and in my very first reply i mentioned how to add another.  regardless, glad you have solved it.
&#60;/p&#62;</description>
</item>
<item>
<title>MrChase on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-24017</link>
<pubDate>Wed, 30 Nov 2011 15:17:16 +0000</pubDate>
<dc:creator>MrChase</dc:creator>
<guid isPermaLink="false">24017@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks Helga for your usefull reply and the tricks.&#60;br /&#62;
I'm using the .home class now, thanks for mention it.&#60;/p&#62;
&#60;p&#62;Well, I'm a bit of a noob when it comes to PHP but the problem was the following:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;home&#38;quot;&#38;gt;
&#38;lt;?php ctf_widget() ?&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I replaced the ctf_widget line with the this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;home&#38;quot;&#38;gt;
&#38;lt;?php the_widget(&#38;#39;cat_tag_filter&#38;#39;, $instance, $args); ?&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The solution was in de readme.txt in the plugin folder:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
If your theme doesn't support widgets, you can use this code:&#60;br /&#62;
&#38;lt;?php the_widget('cat_tag_filter', $instance, $args); ?&#38;gt;
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Lesson learned! From now on I'll always read readme files ;)
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-24016</link>
<pubDate>Wed, 30 Nov 2011 13:48:46 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24016@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;are you using firebug?  or the chrome/safari equivalent developer tools?  if you aren't you absolutely NEED to be, as these types of questions are rendered extraordinarily simple.&#60;/p&#62;
&#60;p&#62;for instance, thematic's default style is &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.aside #searchsubmit {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;which is probably hiding your submit button.  (by the by, you can wrap code with two ` backtick marks... if you have a US keyboard that is usually up next to the 1.  so you'd need to override that somehow&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.filter-cat .ctf-submit{
border-style:solid;
border-width:1px;
border-color:#000;
display: block;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;that might not be specific enough, i'm not sure w/o actually testing it, but hopefully you get the point.&#60;/p&#62;
&#60;p&#62;where did this &#34;.home-only&#34; class come from?  did you add it to the dynamic body classes or is it a place holder b/c you don't know what to actually put there?  if the later, you can again use firebug to read all the dynamic thematic body classes&#60;/p&#62;
&#60;p&#62;home page page-id-62 page-template-default logged-in admin-bar windows chrome ch15&#60;/p&#62;
&#60;p&#62;and the first one happens to be home so in lieu of .home-only you'd just use .home&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.home .filter-cat{
font-size:24px;
border-style:solid;
border-width:8px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if you have hidden selects i'm not sure what the problem is.  but you can probably sort it out w/ firebug.
&#60;/p&#62;</description>
</item>
<item>
<title>MrChase on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-24010</link>
<pubDate>Wed, 30 Nov 2011 08:53:35 +0000</pubDate>
<dc:creator>MrChase</dc:creator>
<guid isPermaLink="false">24010@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok, some screenshots:&#60;br /&#62;
&#60;a href=&#34;http://img824.imageshack.us/img824/2603/themehome.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img824.imageshack.us/img824/2603/themehome.jpg&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://img528.imageshack.us/img528/7624/themesub.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img528.imageshack.us/img528/7624/themesub.jpg&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>MrChase on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-24009</link>
<pubDate>Wed, 30 Nov 2011 08:44:00 +0000</pubDate>
<dc:creator>MrChase</dc:creator>
<guid isPermaLink="false">24009@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok, it's kind of working. Now I've got another problem:&#60;br /&#62;
I want to have one plugin (http://wordpress.org/extend/plugins/cat-tag-filter-widget/) with two styles: one style for the homepage, one style for the other pages. Let's say I want the form at the homepage having bigger fields than on the other pages. (Sorry for my bad english.)&#60;/p&#62;
&#60;p&#62;Is this possible?&#60;/p&#62;
&#60;p&#62;This is in the plugin functions PHP file:&#60;br /&#62;
Note the form within the &#34;filter-cat&#34; div.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
function ctf_widget(){&#60;br /&#62;
  global $ctf_options; ?&#38;gt;&#60;br /&#62;
  &#38;lt;div class=&#34;filter-cat&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;form action=&#34;&#38;lt;?php echo get_bloginfo('wpurl') . '/' . PLUGINDIR . '/' . dirname(plugin_basename(__FILE__)) . '/cat-tag-filter.php'; ?&#38;gt;&#34; method=&#34;post&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;?php if ($ctf_options['cat_list_label']) echo '&#38;lt;label for=&#34;ctf-cat-select&#34;&#38;gt;' . $ctf_options['cat_list_label'] . '&#38;lt;/label&#38;gt;'; ?&#38;gt;&#60;br /&#62;
    &#38;lt;select name=&#34;cat&#34; class=&#34;ctf-cat-select&#34; &#38;gt;&#60;br /&#62;
      &#38;lt;option value=&#34;-1&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;?php if ($ctf_options['all_cats_text'] != '') echo $ctf_options['all_cats_text']; else _e('Any category', 'cat-tag-filter'); ?&#38;gt;&#60;br /&#62;
      &#38;lt;/option&#38;gt;&#60;br /&#62;
      &#38;lt;?php echo cat_options(); ?&#38;gt;&#60;br /&#62;
    &#38;lt;/select&#38;gt;&#60;br /&#62;
    &#38;lt;?php if ($ctf_options['tag_list_label']) echo '&#38;lt;label for=&#34;ctf-tag-select&#34;&#38;gt;' . $ctf_options['tag_list_label'] . '&#38;lt;/label&#38;gt;'; ?&#38;gt;&#60;br /&#62;
    &#38;lt;select name=&#34;tag&#34; class=&#34;ctf-tag-select&#34; &#38;gt;&#60;br /&#62;
      &#38;lt;option value=&#34;-1&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;?php if ($ctf_options['all_tags_text'] != '') echo $ctf_options['all_tags_text']; else _e('Any tag', 'cat-tag-filter'); ?&#38;gt;&#60;br /&#62;
      &#38;lt;/option&#38;gt;&#60;br /&#62;
      &#38;lt;?php echo tag_options(); ?&#38;gt;&#60;br /&#62;
    &#38;lt;/select&#38;gt;&#60;br /&#62;
    &#38;lt;input type=&#34;hidden&#34; name=&#34;ctf_submit&#34; value=&#34;1&#34; /&#38;gt;&#60;br /&#62;
    &#38;lt;input type=&#34;hidden&#34; name=&#34;home_url&#34; value=&#34;&#38;lt;?php bloginfo('url'); ?&#38;gt;&#34; /&#38;gt;&#60;br /&#62;
    &#38;lt;input class=&#34;ctf-submit&#34; class=&#34;button&#34; type=&#34;submit&#34;  value=&#34;&#38;lt;?php echo $ctf_options['button_title']; ?&#38;gt;&#34;/&#38;gt;&#60;br /&#62;
  &#38;lt;/form&#38;gt; &#38;lt;/div&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This is in the style.css in the childtheme folder:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
/* =Cat Tag Filter&#60;br /&#62;
-------------------------------------------------------------- */&#60;/p&#62;
&#60;p&#62;.filter-cat{&#60;br /&#62;
font-size:12px;&#60;br /&#62;
border-style:solid;&#60;br /&#62;
border-width:3px;&#60;br /&#62;
}&#60;br /&#62;
.filter-cat .ctf-tag-select,.ctf-cat-select,.ctf-submit{&#60;br /&#62;
width: 130px;&#60;br /&#62;
}&#60;br /&#62;
.filter-cat .ctf-submit{&#60;br /&#62;
border-style:solid;&#60;br /&#62;
border-width:1px;&#60;br /&#62;
border-color:#000;&#60;br /&#62;
} &#60;/p&#62;
&#60;p&#62;/* =Cat Tag Filter Home Only&#60;br /&#62;
-------------------------------------------------------------- */&#60;/p&#62;
&#60;p&#62;.home-only .filter-cat{&#60;br /&#62;
font-size:24px;&#60;br /&#62;
border-style:solid;&#60;br /&#62;
border-width:8px;&#60;br /&#62;
}&#60;br /&#62;
.home-only .filter-cat .ctf-tag-select,.ctf-cat-select,.ctf-submit{&#60;br /&#62;
width: 200px;&#60;br /&#62;
}&#60;br /&#62;
.home-only .filter-cat .ctf-submit{&#60;br /&#62;
border-style:solid;&#60;br /&#62;
border-width:5px;&#60;br /&#62;
border-color:#FFF;&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Styles are just an example.&#60;br /&#62;
I've got a different homepage calling the Cat Tag Filter widget within the &#34;class=&#34;home-only&#34; div.&#60;/p&#62;
&#60;p&#62;It's working, only the&#60;br /&#62;
.ctf-tag-select, .ctf-cat-select and the .ctf-submit aren't visible at the homepage.&#60;/p&#62;
&#60;p&#62;I hope you'll understand this problem. Thanks in advance for your replie!
&#60;/p&#62;</description>
</item>
<item>
<title>MrChase on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-23977</link>
<pubDate>Mon, 28 Nov 2011 18:42:11 +0000</pubDate>
<dc:creator>MrChase</dc:creator>
<guid isPermaLink="false">23977@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for your reply Helga! That widget area looks nice and quite simple. I'll go figure it out!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-23973</link>
<pubDate>Mon, 28 Nov 2011 16:57:56 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23973@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you can add any amount of divs you'd like to the header.  that part is easy, but thematic does not have that type of search ability built in.  in lieu of writing it yourself, i'd go w/ the plugin.  why re-invent the wheel? &#60;/p&#62;
&#60;p&#62;you can always add a widget area in the header and drop it in there.  &#60;/p&#62;
&#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;/p&#62;
&#60;p&#62;if the plugin is loading its own stylesheet, but you'd rather that it didn't... assuming that it is well-written you should be able to deregister it's stylesheet and then handle all of its styles in your own style.css&#60;/p&#62;
&#60;p&#62;see Devin's post on deregistering stuff&#60;br /&#62;
&#60;a href=&#34;http://wptheming.com/2009/12/optimize-plug-in-script-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://wptheming.com/2009/12/optimize-plug-in-script-wordpress/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>MrChase on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-23970</link>
<pubDate>Mon, 28 Nov 2011 16:05:40 +0000</pubDate>
<dc:creator>MrChase</dc:creator>
<guid isPermaLink="false">23970@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Here's a sketch: &#60;a href=&#34;http://img717.imageshack.us/img717/232/thematiccustomexample.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img717.imageshack.us/img717/232/thematiccustomexample.jpg&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>MrChase on "Creating a custom homepage with multiple category search fields"</title>
<link>http://themeshaper.com/forums/topic/creating-a-custom-homepage-with-multiple-category-search-fields#post-23969</link>
<pubDate>Mon, 28 Nov 2011 15:49:57 +0000</pubDate>
<dc:creator>MrChase</dc:creator>
<guid isPermaLink="false">23969@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there! This is my first post. I'm from the Netherlands so my english isn't that good. I'm sorry for that! First thing I want to say: Thematic rocks!&#60;/p&#62;
&#60;p&#62;Okay, here's the deal: I want to make a custom homepage (frontpage) with an extra area below the header section. In this custom area, I want to have a multiple category search widget. (See: &#60;a href=&#34;http://wordpress.org/extend/plugins/multiple-category-selection-widget/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/multiple-category-selection-widget/&#60;/a&#62; and &#60;a href=&#34;http://wordpress.zackdesign.biz/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.zackdesign.biz/&#60;/a&#62; )&#60;/p&#62;
&#60;p&#62;In other words: I want a huge header with a nice background image and a div containing the multiple cat search, so visitors can filter categories.&#60;/p&#62;
&#60;p&#62;My questions:&#60;br /&#62;
1) Is there already a kind of &#34;Thematic multiple category search filter&#34; ready to use?&#60;br /&#62;
2) If not: Do you guys and girls know a tutorial so I can create this multi-cat-search box straight into my custome homepage / frontpage?&#60;/p&#62;
&#60;p&#62;I just don't like to add lots of non-thematic plugins to my wp theme and want to have a clean childtheme with only one stylesheet.&#60;/p&#62;
&#60;p&#62;Is there any kind of solution, or should I keep dreaming?&#60;br /&#62;
I'm kind of a noob with PHP, but I'm familiar with HTML and CSS.&#60;br /&#62;
Thanks for your replies!
&#60;/p&#62;</description>
</item>
<item>
<title>notlaura on "Search widget not functioning on queried index"</title>
<link>http://themeshaper.com/forums/topic/search-widget-not-functioning-on-category-archive#post-23583</link>
<pubDate>Sat, 22 Oct 2011 22:54:42 +0000</pubDate>
<dc:creator>notlaura</dc:creator>
<guid isPermaLink="false">23583@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;In my theme I provide an option for users to set a 'blog category' that queries and displays only posts from that category on the index page by filtering &#60;code&#62;thematic_above_index_loop&#60;/code&#62;:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function get_blog_cat()	{
	// Get the option
	$shortname = get_option(&#38;#39;of_shortname&#38;#39;);
	$cat_option = get_option($shortname.&#38;#39;_cats_in_blog&#38;#39;);
	$cat = get_cat_ID($cat_option);
	// Query the index loop
	$paged = (get_query_var(&#38;#39;paged&#38;#39;)) ? get_query_var(&#38;#39;paged&#38;#39;) : 1; query_posts(&#38;quot;cat=$cat&#38;#38;paged=$paged&#38;quot;);
}

add_filter(&#38;#39;wp_head&#38;#39;, &#38;#39;get_blog_cat&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This works well, but the search widget breaks. My guess is that this is because I'm querying the index page...is it better to set this option in index.php rather than in a filter? Any help/ideas are greatly appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>jeffeggleston on "Problems displaying custom field data"</title>
<link>http://themeshaper.com/forums/topic/problems-displaying-custom-field-data#post-23343</link>
<pubDate>Tue, 04 Oct 2011 21:00:35 +0000</pubDate>
<dc:creator>jeffeggleston</dc:creator>
<guid isPermaLink="false">23343@http://themeshaper.com/forums/</guid>
<description>&#60;pre&#62;&#60;code&#62;$the_query = new WP_Query( &#38;#39;category_name=featured-event&#38;#39; );
            while ( $the_query-&#38;gt;have_posts() ) : $the_query-&#38;gt;the_post();
            //$featured_event_info = get_post_meta($post-&#38;gt;ID, &#38;#39;featured_event_info&#38;#39;, true);
			//$featured_event_title = get_post_meta($post-&#38;gt;ID, &#38;#39;featured_event_title&#38;#39;, true);
            $featured_event_info = get_field($featured_event_info);
			$featured_event_title = get_field($featured_event_title);?&#38;gt;
            &#38;lt;div class=&#38;quot;featured-events-post&#38;quot;&#38;gt;
            	&#38;lt;a title=&#38;#39;&#38;lt;?php echo $featured_event_title; ?&#38;gt;&#38;#39; href=&#38;#39;&#38;lt;?php the_permalink() ?&#38;gt;&#38;#39; rel=&#38;#39;bookmark&#38;#39;&#38;gt;
                &#38;lt;div class=&#38;quot;featured-events-title&#38;quot;&#38;gt;&#38;lt;?php echo $featured_event_title; ?&#38;gt;This is where the data should be&#38;lt;/div&#38;gt;
                &#38;lt;div class=&#38;quot;featured-events-shortdata&#38;quot;&#38;gt;&#38;lt;?php echo $featured_event_info; ?&#38;gt;This is where the info should be&#38;lt;/div&#38;gt;&#38;lt;/a&#38;gt;
            &#38;lt;/div&#38;gt;
            &#38;lt;?php endwhile; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Ok, so I cannot get the data from my custom fields to show up in this &#34;Featured Events&#34; widget I am trying to build and add to the left sidebar of my homepage. Any help would be greatly appreciated. A link to my development site is below:&#60;br /&#62;
&#60;a href=&#34;http://library.jeffmeggleston.com/&#34;&#62;http://library.jeffmeggleston.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>logostar on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23316</link>
<pubDate>Sun, 02 Oct 2011 14:43:29 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">23316@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Code above does not work,&#60;br /&#62;
I actually googled exclude category from indexloop and came to a post on here with the correct code.&#60;br /&#62;
Thanks for the help though! I always seem to find the answer on here using google.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23310</link>
<pubDate>Sun, 02 Oct 2011 02:33:11 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23310@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;unfortunately, even though you are using Thematic, it is still a &#60;em&#62;widget&#60;/em&#62; problem for removing that category from the widgets.  &#60;/p&#62;
&#60;p&#62;to remove it from it from the index loop you'd do something like&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function kia_adjust_query(){
  global $wp_query;
  $defaults = $wp_query-&#38;gt;query_vars;
  $new = array(&#38;#39;category__not_in&#38;#39; =&#38;gt; array( 6 ) ); //where 6 is the ID of the cat you&#38;#39;d like to exclude
  $args = wp_parse_args( $new, $defaults );
  query_posts($args);
}
add_action(&#38;#39;thematic_aboveindexloop&#38;#39;,&#38;#39;kia_adjust_query&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>logostar on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23304</link>
<pubDate>Sat, 01 Oct 2011 16:35:05 +0000</pubDate>
<dc:creator>logostar</dc:creator>
<guid isPermaLink="false">23304@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I think you would have to use&#60;br /&#62;
 if ( is_home() ) {&#60;br /&#62;
something like that. &#60;/p&#62;
&#60;p&#62;As I'm trying to exclude specific categories from the blog page.
&#60;/p&#62;</description>
</item>
<item>
<title>circleatseven on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23149</link>
<pubDate>Tue, 20 Sep 2011 18:02:45 +0000</pubDate>
<dc:creator>circleatseven</dc:creator>
<guid isPermaLink="false">23149@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Actually, it is because I am neckdeep in a Thematic child theme build and Thematic doesn't easily let me edit the loop to exclude a category from the templates I need to exclude it from — all I can see are these action hooks! How do I edit those to exclude a category?!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23146</link>
<pubDate>Tue, 20 Sep 2011 17:46:04 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23146@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;that's not really a thematic question.  i think you'd need to write your own widgets
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23147</link>
<pubDate>Tue, 20 Sep 2011 17:46:04 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">23147@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;that's not really a thematic question.  i think you'd need to write your own widgets
&#60;/p&#62;</description>
</item>
<item>
<title>circleatseven on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23145</link>
<pubDate>Tue, 20 Sep 2011 17:23:35 +0000</pubDate>
<dc:creator>circleatseven</dc:creator>
<guid isPermaLink="false">23145@http://themeshaper.com/forums/</guid>
<description>&#60;br /&#62;</description>
</item>
<item>
<title>circleatseven on "Exclude Category from loop AND the widgets!"</title>
<link>http://themeshaper.com/forums/topic/exclude-category-from-loop-and-the-widgets#post-23144</link>
<pubDate>Tue, 20 Sep 2011 17:17:04 +0000</pubDate>
<dc:creator>circleatseven</dc:creator>
<guid isPermaLink="false">23144@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello. I've seen a bunch of posts that explain how to exclude a specific category from the loop — and  they all seem to work well, however, none of them ALSO exclude that category from the 'categories', 'archives', and 'recent posts' widgets!&#60;/p&#62;
&#60;p&#62;Here's the overview of what I am trying to do: I am using the 'Featured image' from posts of a certain category to display in a nivo slider on the home page(static page, not the blog) ... I want to hide the posts categorized as 'featured' (category '1') from everywhere except the home page.&#60;/p&#62;
&#60;p&#62;Anyone know how to do this?! Thanks!
&#60;/p&#62;</description>
</item>

</channel>
</rss>

