<?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: description</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 07 Feb 2012 22:30:57 +0000</pubDate>

<item>
<title>helgatheviking on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24799</link>
<pubDate>Tue, 10 Jan 2012 23:05:26 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24799@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;tested locally this should add the site title to the beginning of the doctitle everywhere except for the home/front pages where it already is:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_doctitle($elements) {

	$site_name = get_bloginfo(&#38;#39;name&#38;#39;);
	$separator = apply_filters(&#38;#39;thematic_doctitle_separator&#38;#39;, &#38;#39;&#124;&#38;#39;);

	// and now adding the site name if we&#38;#39;re not on home or front_page
	if (!( is_home() &#124;&#124; is_front_page() )) {
		array_unshift($elements, $site_name, $separator);
	}

	return $elements;
}
add_filter(&#38;#39;thematic_doctitle&#38;#39;, &#38;#39;childtheme_doctitle&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24796</link>
<pubDate>Tue, 10 Jan 2012 22:00:11 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24796@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I also found this post which has some different code at: &#60;a href=&#34;http://themeshaper.com/forums/topic/change-doctitle?replies=4#post-24794&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/change-doctitle?replies=4#post-24794&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;For the most part it seems to work just fine, except my home page has no separator. The blog title and the tagline run straight together...&#60;/p&#62;
&#60;p&#62;Either solution would be great to get working... Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24793</link>
<pubDate>Tue, 10 Jan 2012 21:24:46 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24793@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Here are lines 19-22:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_doctitle() {
 
 // You don&#38;#39;t want to change this one.
 $site_name = get_bloginfo(&#38;#39;name&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks. :)
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24776</link>
<pubDate>Tue, 10 Jan 2012 01:31:44 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24776@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;well what is line 21 and just prior?  though i see this double semi-colon right away&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$content .= &#38;#39; &#38;#39; . single_cat_title(&#38;quot;&#38;quot;, false);;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24773</link>
<pubDate>Mon, 09 Jan 2012 23:14:19 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24773@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Helga,&#60;/p&#62;
&#60;p&#62;I can't seem to figure out where the offender is! Here is my functions.php code as shown on the theme filters page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_doctitle() {

// You don&#38;#39;t want to change this one.
$site_name = get_bloginfo(&#38;#39;name&#38;#39;);
 
// But you like to have a different separator
$separator = &#38;#39;&#38;amp;raquo;&#38;#39;;
 
// We will keep the original code
if ( is_single() ) {
$content = single_post_title(&#38;#39;&#38;#39;, FALSE);
}
elseif ( is_home() &#124;&#124; is_front_page() ) {
$content = get_bloginfo(&#38;#39;description&#38;#39;);
}
elseif ( is_page() ) {
$content = single_post_title(&#38;#39;&#38;#39;, FALSE);
}
elseif ( is_search() ) {
$content = __(&#38;#39;Search Results for:&#38;#39;, &#38;#39;thematic&#38;#39;);
$content .= &#38;#39; &#38;#39; . wp_specialchars(stripslashes(get_search_query()), true);
}
elseif ( is_category() ) {
$content = __(&#38;#39;Category Archives:&#38;#39;, &#38;#39;thematic&#38;#39;);
$content .= &#38;#39; &#38;#39; . single_cat_title(&#38;quot;&#38;quot;, false);;
}
elseif ( is_tag() ) {
$content = __(&#38;#39;Tag Archives:&#38;#39;, &#38;#39;thematic&#38;#39;);
$content .= &#38;#39; &#38;#39; . thematic_tag_query();
}
elseif ( is_404() ) {
$content = __(&#38;#39;Not Found&#38;#39;, &#38;#39;thematic&#38;#39;);
}
else {
$content = get_bloginfo(&#38;#39;description&#38;#39;);
}

if (get_query_var(&#38;#39;paged&#38;#39;)) {
$content .= &#38;#39; &#38;#39; .$separator. &#38;#39; &#38;#39;;
$content .= &#38;#39;Page&#38;#39;;
$content .= &#38;#39; &#38;#39;;
$content .= get_query_var(&#38;#39;paged&#38;#39;);
}

// until we reach this point. You want to have the site_name everywhere?
// Ok .. here it is.
$my_elements = array(
&#38;#39;site_name&#38;#39; =&#38;gt; $site_name,
&#38;#39;separator&#38;#39; =&#38;gt; $separator,
&#38;#39;content&#38;#39; =&#38;gt; $content
);

// and now we&#38;#39;re reversing the array as long as we&#38;#39;re not on home or front_page
if (!( is_home() &#124;&#124; is_front_page() )) {
$my_elements = array_reverse($my_elements);
}

// And don&#38;#39;t forget to return your new creation
return $my_elements;
}

// Add the filter to the original function
add_filter(&#38;#39;thematic_doctitle&#38;#39;, &#38;#39;childtheme_doctitle&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>helgatheviking on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24769</link>
<pubDate>Mon, 09 Jan 2012 20:09:27 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24769@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;syntax error means exactly that... error in your syntax.  likely missing a ) , ; ' } or something some where.  i can also mean you have some punctuation where you shouldn't but since it says unexpected string, you are probs not closing something right
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24768</link>
<pubDate>Mon, 09 Jan 2012 19:27:16 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24768@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi so I found some information on this page:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/thematic/guide/?page_id=12&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/thematic/guide/?page_id=12&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Under the heading 'thematic_doctitle()'&#60;/p&#62;
&#60;p&#62;However by using that code I got the following error.&#60;/p&#62;
&#60;p&#62;Parse error: syntax error, unexpected T_STRING in /home/content/x/r/o/xroox/html/24hrknight/wp-content/themes/tuxedo/functions.php on line 21&#60;/p&#62;
&#60;p&#62;Thanks. :)
&#60;/p&#62;</description>
</item>
<item>
<title>drewdavid on "getting blog tagline to show up in browser window"</title>
<link>http://themeshaper.com/forums/topic/blog-tagline-not-showing-up-in-browser-window#post-24767</link>
<pubDate>Mon, 09 Jan 2012 19:20:52 +0000</pubDate>
<dc:creator>drewdavid</dc:creator>
<guid isPermaLink="false">24767@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'd like the blog tagline/description to be placed in the title before or after the blog title, as well as individual post/page titles.&#60;/p&#62;
&#60;p&#62;Right now I only get the blog title on the home page, and only the page/post title.&#60;/p&#62;
&#60;p&#62;Thanks! :)&#60;/p&#62;
&#60;p&#62;Drew
&#60;/p&#62;</description>
</item>
<item>
<title>dazlm on "Header - Delete Blog Title and Description"</title>
<link>http://themeshaper.com/forums/topic/header-delete-blog-title-and-description#post-24751</link>
<pubDate>Mon, 09 Jan 2012 05:51:44 +0000</pubDate>
<dc:creator>dazlm</dc:creator>
<guid isPermaLink="false">24751@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Who are you people... and why do you keep solving my problems?  :)  Thanks for this code!
&#60;/p&#62;</description>
</item>
<item>
<title>Duke on "How do I add meta title and description tags to this theme ?"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-add-meta-title-and-description-tags-to-this-theme#post-23342</link>
<pubDate>Tue, 04 Oct 2011 19:32:17 +0000</pubDate>
<dc:creator>Duke</dc:creator>
<guid isPermaLink="false">23342@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This is an old post but I will write a short response for any future readers who might encounter the same problem.&#60;/p&#62;
&#60;p&#62;To setup keyword and description meta in the Thematic template, simply add the following code into your child theme functions.php. And don't forget to insert your keywords! ;)&#60;/p&#62;
&#60;p&#62;function child_meta_keywords($description) {&#60;br /&#62;
   if(is_front_page())&#60;br /&#62;
   {&#60;br /&#62;
		$keywords_meta  = &#34;\t&#34; . '&#38;lt;meta name=&#34;keywords&#34; content=&#34;Your keywords go here!&#34; /&#38;gt;' . &#34;\n\n&#34;;&#60;br /&#62;
		$description_meta  = &#34;\t&#34; . '&#38;lt;meta name=&#34;description&#34; content=&#34;Your description goes here!&#34; /&#38;gt;' . &#34;\n\n&#34;;&#60;br /&#62;
		$child_meta = $description . $keywords_meta . $description_meta;&#60;br /&#62;
		return $child_meta;&#60;br /&#62;
	}&#60;br /&#62;
	return $description;&#60;br /&#62;
}&#60;br /&#62;
add_filter ('thematic_create_description','child_meta_keywords');
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Double Meta Description with the SEO plugin by Yoast"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-with-the-seo-plugin-by-yoast#post-22219</link>
<pubDate>Fri, 08 Jul 2011 03:58:20 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22219@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;don't forget to mark as resolved
&#60;/p&#62;</description>
</item>
<item>
<title>Tom Kroscavage on "Double Meta Description with the SEO plugin by Yoast"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-with-the-seo-plugin-by-yoast#post-22218</link>
<pubDate>Fri, 08 Jul 2011 03:33:21 +0000</pubDate>
<dc:creator>Tom Kroscavage</dc:creator>
<guid isPermaLink="false">22218@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Double Meta Description with the SEO plugin by Yoast"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-with-the-seo-plugin-by-yoast#post-22215</link>
<pubDate>Fri, 08 Jul 2011 02:31:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">22215@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i think this should remove the thematic description&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//Remove Thematic Meta Description
function remove_description($display) {
$display = FALSE;
return $display;
}
add_filter(&#38;#39;thematic_show_description&#38;#39;, &#38;#39;remove_description&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Tom Kroscavage on "Double Meta Description with the SEO plugin by Yoast"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-with-the-seo-plugin-by-yoast#post-22214</link>
<pubDate>Thu, 07 Jul 2011 22:14:39 +0000</pubDate>
<dc:creator>Tom Kroscavage</dc:creator>
<guid isPermaLink="false">22214@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have two meta descriptions in all my post headers the first meta description is the same as my excerpt.  I would like to remove this one.  the second is generated by the Yoast WordPress SEO plugin.&#60;/p&#62;
&#60;p&#62;Here is a post from my site:&#60;br /&#62;
&#60;a href=&#34;http://norman-okc.com/weld/lincoln-ln-25-feedrolls/&#34; rel=&#34;nofollow&#34;&#62;http://norman-okc.com/weld/lincoln-ln-25-feedrolls/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17764</link>
<pubDate>Tue, 14 Dec 2010 16:13:18 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17764@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;In review:&#60;/p&#62;
&#60;p&#62;Using the Taxonomy Meta plugin linked above, I set a featured post for each category archive and created a post for each category archive meta content.&#60;/p&#62;
&#60;p&#62;Then, in category.php I inserted the code from the post above.&#60;/p&#62;
&#60;p&#62;Now my category archives have post content associated with each archive (though the formatting is still unresolved)
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17735</link>
<pubDate>Tue, 14 Dec 2010 00:14:49 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17735@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Got it working!&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

	// Get the category id of this archive, as an integer
		$thecat = get_query_var(&#38;#39;cat&#38;#39;); //works!

        // Find the corresponding featured post for $thecat
		$tax_meta = get_option( &#38;#39;category_featured&#38;#39; );
		$tax_meta_post_id = $tax_meta[$thecat]; //works!

	// Add the post content of the feature post
		$tax_meta_post = get_post($tax_meta_post_id);
		$tax_meta_content = $tax_meta_post-&#38;gt;post_content;
		echo $tax_meta_content; 

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The whole time I forgot to echo the featured post content!&#60;/p&#62;
&#60;p&#62;Thanks again for all your help! &#60;/p&#62;
&#60;p&#62;One problem I still have is that the featured post content isn't formatted the same the post... any ideas on how to adjust this?
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17733</link>
<pubDate>Mon, 13 Dec 2010 22:28:39 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17733@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Print_r worked this time, exactly as you have it above ^. I didn't understand what how to set up the variables the first time you mentioned the print_r function.&#60;/p&#62;
&#60;p&#62;I am able to get the &#34;Featured post&#34; out of the database by being on the corresponding category archive, but now I'm stuck on calling that single featured Id post content.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

				// Get the category id of this archive, as an integer
				foreach(get_the_category() as $category)
				{ $thecat = $category-&#38;gt;cat_ID; }								 

				// Find the corresponding featured post for $thecat
				$tax_meta = get_option( &#38;#39;category_featured&#38;#39; );
				$tax_meta_id = $tax_meta[$thecat];
				echo $tax_meta_id;

				// Add the post content of the feature post
				$tax_meta_content = get_post($tax_meta_id);

				foreach($tax_meta_content as $post) :
   				setup_postdata($post);

				the_content(); 

				endforeach;

				// Display the content of the category_featured array
				$test = get_option(&#38;#39;category_featured&#38;#39;);
				print_r($test);

				?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;What I get with this code is:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62; 442Array ( [7] =&#38;gt; 442 [101] =&#38;gt; 449 [14] =&#38;gt; 0 )
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;442 is the associated feature_id, good. Array prints and looks good. But the content for post 442 didn't get shown in between those two functions.&#60;/p&#62;
&#60;p&#62;This only works on archives with categorized posts. If no posts exist within that archive then the post foreach function has a fatal error.&#60;/p&#62;
&#60;p&#62;I'll continue troublsehooting
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17731</link>
<pubDate>Mon, 13 Dec 2010 21:30:42 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">17731@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;how are you defining $category_featured in your function?  you have to give it a value or you will end up with the empty array... as denoted by print_r being blank.  print_r should should data similar to what is in the database.  that at least does tell us that the info is going into the db, now you need to get it out.  it is in the options table?&#60;/p&#62;
&#60;p&#62;if you add this to the function i showed you before to echo things to thematic_before just to test them out.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$test = get_option(&#38;#39;category_featured&#38;#39;);
print_r($test);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;do you get some data?
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17729</link>
<pubDate>Mon, 13 Dec 2010 20:00:01 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17729@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK, found the database value in the wp_options table, just like Brad said:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62; I’m going to save that meta data (the ID in this case) as a single array of options in the WordPress options table.&#60;/p&#62;
&#60;/blockquote&#62;
&#60;p&#62;And this is the value for &#34;category_featured&#34;:&#60;br /&#62;
a:3:{i:7;i:442;i:101;i:449;i:14;i:0;}&#60;/p&#62;
&#60;p&#62;Reality check!&#60;br /&#62;
category ID 7 does have featured ID of 442... looks good compared to &#34;i:7;i:442&#34;&#60;br /&#62;
category ID 101 does have featured ID of 449... looks good compared to &#34;i:101;i:449&#34;&#60;br /&#62;
category ID 14 does have featured ID of 0... I didn't enter anything in that category&#60;/p&#62;
&#60;p&#62;So my worry that the data wasn't being stored is extinguished. Back to calling the array correctly...&#60;/p&#62;
&#60;p&#62;I don't know what the a:3: means though?
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17726</link>
<pubDate>Mon, 13 Dec 2010 19:27:39 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17726@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;print_r($category_featured) isn't giving me anything, which may be related to the fact that the tax meta plugin DOESN'T explain how to call that ID. I made a guess that I could call the array(category_featured) based on the notes, but it isn't showing &#34;449&#34; or similar (as I should expect).&#60;/p&#62;
&#60;p&#62;I even checked the database to see if a value was written and I can't find a related number other than object_id. The Category Meta plugin wrote new database values for &#34;image1&#34; and &#34;proj-list&#34; (that I created)&#60;/p&#62;
&#60;p&#62;Here is what the language is...&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;As you can see we are saving the Category ID and Featured Post ID as a single associative array option value in WordPress named category_featured. As you add Featured Post ID values to each of your categories they will be added to this array and saved in WordPress.&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Now that I just read that again, maybe what I need to do is to setup a conditional if category_ID is equal to this_category then get_posts(featured_post_ID). Now I need to figure out how to do that...&#60;/p&#62;
&#60;p&#62;The investigation continues.
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17724</link>
<pubDate>Mon, 13 Dec 2010 18:33:45 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">17724@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;if you are in a template you can just print_r($array) with whatever the array is called to see its full contents.  sometimes i also do this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function test_stuff(){
  echo &#38;quot;bacon!&#38;quot; . $variable_i_want_to_inspect ;
  print_r($suspicious_array);
}
add_action(&#38;#39;thematic_before&#38;#39;,&#38;#39;test_stuff&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;does the tax meta plugin explain how to get the ID for that featured post?&#60;/p&#62;
&#60;p&#62;also your chunk of code is a little suspect.  i dont know if this will fix it, but you either use a new WP_Query OR get_posts, not both.  and in this situation it is better to use get posts and not monkey w/ the regular query.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$args=array(
   &#38;#39;post_type&#38;#39;=&#38;gt;&#38;#39;post&#38;#39;,
   &#38;#39;post__in&#38;#39; =&#38;gt; array($category_featured)
);

$taxo_meta_post = get_posts(&#38;#39;$args&#38;#39;);
	foreach($taxo_meta_post as $post) :
	  setup_postdata($post);
	  the_content();
        endforeach;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;be sure to echo out $category_featured somewhere so that you can see what kind of info is in that variable.  it might not be what you expect
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17723</link>
<pubDate>Mon, 13 Dec 2010 18:16:46 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17723@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;False alarm, not working yet, it is just calling the content of the latest posts... I made another page and it call that featured content and then the previous featured content and then the other posts...&#60;/p&#62;
&#60;p&#62;Not there yet.
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17722</link>
<pubDate>Mon, 13 Dec 2010 18:03:40 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17722@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Getting closer... real close actually!&#60;/p&#62;
&#60;p&#62;So using this chunk:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
				$args=array(
				   &#38;#39;post_type&#38;#39;=&#38;gt;&#38;#39;post&#38;#39;,
				   &#38;#39;post__in&#38;#39; =&#38;gt; array($category_featured)
				);
				$the_query = new WP_Query($args);
				?&#38;gt;

                 &#38;lt;?php
				 $taxo_meta_post = get_posts(&#38;#39;$the_query&#38;#39;);
				 foreach($taxo_meta_post as $post) :
					setup_postdata($post);
				 ?&#38;gt;
				 &#38;lt;?php the_content(); ?&#38;gt;
				 &#38;lt;?php endforeach;
				 wp_reset_query();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I've been able to call the content of the featured post (per taxonomy meta ID)! SUCCESS! But, it also calls the content from other random posts (The latest posts I think), and only three...&#60;/p&#62;
&#60;p&#62;Do you know how I can echo the array($category_featured)? (I'd like to inspect the query)&#60;br /&#62;
or Have a suggestion on why the other content is being shown?&#60;/p&#62;
&#60;p&#62;Thanks for all your help so far... with your suggestions I've really leaped forward in code comprehension!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17677</link>
<pubDate>Fri, 10 Dec 2010 22:50:58 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">17677@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;well if you have that posts ID number then you can can the_title($id) and the_content($id)  inside the loop that $id variable defaults to whatever post is currently being handled by the loop, but outside the loop you can feed it a post ID number.&#60;/p&#62;
&#60;p&#62;i know what you mean about spending the day on something.  i just finished a brutal slider with all kinds of ridiculous functionality about what goes IN the slider.  phew.  time for a break.  good luck.  and definitely let me know how it goes.  i think i need category meta next.
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17676</link>
<pubDate>Fri, 10 Dec 2010 21:53:23 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17676@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;From what I understand about the taxonomy meta data plugin is that you can set a featured post to the category. So I am trying to figure out how to call the post content of that featured post once you are in the category archive.&#60;/p&#62;
&#60;p&#62;I'm assuming you have reviewed the code from the last link...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//test spot...
				tme_save_featured($term_id);
				echo $current_featured;
				?&#38;gt;Current Featured ^
                &#38;lt;?php echo $category_featured;
				?&#38;gt;Category Featured ^
                &#38;lt;?php echo $term_id;
				?&#38;gt;Term ID ^ 

                &#38;lt;?php
				$queried_post = get_post($category_featured);
				$content = $queried_post-&#38;gt;post_content;
				$content = apply_filters(&#38;#39;the_content&#38;#39;, $content);
				$content = str_replace(&#38;#39;]]&#38;gt;&#38;#39;, &#38;#39;]]&#38;gt;&#38;#39;, $content);
				echo $content;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;With this chunk of frankensteined code I am doing a couple of things... trying to see if the plugin is assigning any values to those three terms at the top, which if it is I'm not calling the values right.&#60;/p&#62;
&#60;p&#62;Also I trying to the the post content of that featured post, but instead I get the content of the one post that falls under this category.&#60;/p&#62;
&#60;p&#62;I've almost spent all day trying to figure this out now... almost there too...
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17674</link>
<pubDate>Fri, 10 Dec 2010 20:46:51 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">17674@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;huh?
&#60;/p&#62;</description>
</item>
<item>
<title>rpeterika on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17673</link>
<pubDate>Fri, 10 Dec 2010 16:33:30 +0000</pubDate>
<dc:creator>rpeterika</dc:creator>
<guid isPermaLink="false">17673@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yes, but now how do I call that featured post?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding Custom (static) Category Info to 40+ Category pages"</title>
<link>http://themeshaper.com/forums/topic/adding-custom-static-category-info-to-40-category-pages#post-17660</link>
<pubDate>Thu, 09 Dec 2010 23:25:13 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">17660@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;it was so weird and timely that you posted this today. i have a project where it looks like i am going to be using categories as sub-sites.&#60;/p&#62;
&#60;p&#62;check this out... i think it could be helpful:&#60;br /&#62;
&#60;a href=&#34;http://www.strangework.com/2010/07/01/how-to-save-taxonomy-meta-data-as-an-options-array-in-wordpress/&#34; rel=&#34;nofollow&#34;&#62;http://www.strangework.com/2010/07/01/how-to-save-taxonomy-meta-data-as-an-options-array-in-wordpress/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>joperron on "Double meta description after platinum seo pack"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-after-platinum-seo-pack#post-17659</link>
<pubDate>Thu, 09 Dec 2010 21:44:05 +0000</pubDate>
<dc:creator>joperron</dc:creator>
<guid isPermaLink="false">17659@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Never mind. I'm a bit brain dead I think!
&#60;/p&#62;</description>
</item>
<item>
<title>joperron on "Double meta description after platinum seo pack"</title>
<link>http://themeshaper.com/forums/topic/double-meta-description-after-platinum-seo-pack#post-17657</link>
<pubDate>Thu, 09 Dec 2010 19:28:55 +0000</pubDate>
<dc:creator>joperron</dc:creator>
<guid isPermaLink="false">17657@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Even using those functions the description meta is still generated if I have an excerpt.
&#60;/p&#62;</description>
</item>

</channel>
</rss>

