<?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: keywords</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Wed, 19 Jun 2013 13:53:16 +0000</pubDate>

<item>
<title>TungZ on "Add meta keywords in post, page"</title>
<link>http://themeshaper.com/forums/topic/add-meta-keywords-in-post-page#post-11423</link>
<pubDate>Wed, 14 Apr 2010 12:52:09 +0000</pubDate>
<dc:creator>TungZ</dc:creator>
<guid isPermaLink="false">11423@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Wow, i dit it with custom field, thanks so much :X
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "Add meta keywords in post, page"</title>
<link>http://themeshaper.com/forums/topic/add-meta-keywords-in-post-page#post-11420</link>
<pubDate>Wed, 14 Apr 2010 05:02:10 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">11420@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You could build this function to pull keywords from custom field post meta and accomplish what you want. But for that a plugin would either be an easier route or could demonstrate how to code the custom field handling for your function.
&#60;/p&#62;</description>
</item>
<item>
<title>TungZ on "Add meta keywords in post, page"</title>
<link>http://themeshaper.com/forums/topic/add-meta-keywords-in-post-page#post-11419</link>
<pubDate>Wed, 14 Apr 2010 04:29:08 +0000</pubDate>
<dc:creator>TungZ</dc:creator>
<guid isPermaLink="false">11419@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Gene,&#60;/p&#62;
&#60;p&#62;Thanks for your quick reply, this function is only show keywords you type in &#34;Your,Keywords,Reside,Here&#34;. I want to add keyworks for each post, each page. (like &#34;keywords filed&#34; in &#34;Hybrid post setting&#34; or &#34;Hybrid page setting&#34; )&#60;/p&#62;
&#60;p&#62;Thanks -&#60;br /&#62;
TungZ
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "Add meta keywords in post, page"</title>
<link>http://themeshaper.com/forums/topic/add-meta-keywords-in-post-page#post-11411</link>
<pubDate>Tue, 13 Apr 2010 22:24:32 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">11411@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi TungZ,&#60;/p&#62;
&#60;p&#62;Try adding your keywords after the meta description by filtering thematic_description and adding your meta tag to the end of it.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function child_meta_keywords($description) {
	$keywords  = &#38;quot;\t&#38;quot; . &#38;#39;&#38;lt;meta name=&#38;quot;keywords&#38;quot; content=&#38;quot;Your,Keywords,Reside,Here&#38;quot; /&#38;gt;&#38;#39; . &#38;quot;\n\n&#38;quot;;
	$child_meta = $description . $keywords;
	return $child_meta;
}

add_filter (&#38;#39;thematic_create_description&#38;#39;,&#38;#39;child_meta_keywords&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>TungZ on "Add meta keywords in post, page"</title>
<link>http://themeshaper.com/forums/topic/add-meta-keywords-in-post-page#post-11405</link>
<pubDate>Tue, 13 Apr 2010 17:26:22 +0000</pubDate>
<dc:creator>TungZ</dc:creator>
<guid isPermaLink="false">11405@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thematic is great framework. I can change title format, canonical url, rss, description... but I don't know how to add keywords meta in header section in post, page without plugin. &#60;/p&#62;
&#60;p&#62;Any help greatly appreciated,
&#60;/p&#62;</description>
</item>
<item>
<title>Manuel on "Archive template with tag list"</title>
<link>http://themeshaper.com/forums/topic/archive-template-with-tag-list#post-6524</link>
<pubDate>Thu, 17 Sep 2009 07:38:09 +0000</pubDate>
<dc:creator>Manuel</dc:creator>
<guid isPermaLink="false">6524@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Forgot to post the working version. &#60;/p&#62;
&#60;p&#62;You can see my archive at &#60;a href=&#34;http://manuelmartensen.com/archive/&#34; rel=&#34;nofollow&#34;&#62;http://manuelmartensen.com/archive/&#60;/a&#62; and here is the &#60;em&#62;archive-with-tags.php&#60;/em&#62;:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Template Name: Archive with Tags/Keywords
*/
?&#38;gt;

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

	&#38;lt;div id=&#38;quot;container&#38;quot;&#38;gt;
		&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;

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

			&#38;lt;div id=&#38;quot;post-&#38;lt;?php the_ID() ?&#38;gt;&#38;quot; class=&#38;quot;&#38;lt;?php thematic_post_class() ?&#38;gt;&#38;quot;&#38;gt;
				&#38;lt;?php thematic_postheader(); ?&#38;gt;
					&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;?php the_content(); ?&#38;gt;

&#38;lt;div id=&#38;quot;archive_tag&#38;quot;&#38;gt;
	&#38;lt;h2&#38;gt;Sorted by Keyword&#38;lt;/h2&#38;gt;
		&#38;lt;?php wp_tag_cloud(&#38;#39;format=list&#38;#38;number=0&#38;#38;unit=em&#38;#38;smallest=1&#38;#38;largest=1&#38;#38;orderby=name&#38;#38;order=ASC&#38;#39; );?&#38;gt;
&#38;lt;/div&#38;gt;

&#38;lt;div id=&#38;quot;archive_date&#38;quot;&#38;gt;
	&#38;lt;h2&#38;gt;Sorted by month&#38;lt;/h2&#38;gt;
		&#38;lt;ul&#38;gt;&#38;lt;?php wp_get_archives(&#38;#39;format=html&#38;#39;); ?&#38;gt;&#38;lt;/ul&#38;gt;
&#38;lt;/div&#38;gt;

					&#38;lt;/div&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;

&#38;lt;?php if ( get_post_custom_values(&#38;#39;comments&#38;#39;) ) comments_template() // Add a key/value of &#38;quot;comments&#38;quot; to enable comments on pages! ?&#38;gt;

		&#38;lt;/div&#38;gt;&#38;lt;!-- #content --&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- #container --&#38;gt;

&#38;lt;?php thematic_sidebar() ?&#38;gt;
&#38;lt;?php get_footer() ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Manuel on "Archive template with tag list"</title>
<link>http://themeshaper.com/forums/topic/archive-template-with-tag-list#post-6468</link>
<pubDate>Sun, 13 Sep 2009 00:59:16 +0000</pubDate>
<dc:creator>Manuel</dc:creator>
<guid isPermaLink="false">6468@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This is what I am using right now as &#60;a href=&#34;http://manuelmartensen.com/archive/&#34;&#62;my archive&#60;/a&#62; template. Does it still make sense to edit &#60;code&#62;&#38;lt;?php thematic_archives(); ?&#38;gt;&#60;/code&#62; now?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Template Name: Archive with Tags
*/
?&#38;gt;
&#38;lt;?php get_header() ?&#38;gt;

	&#38;lt;div id=&#38;quot;container&#38;quot;&#38;gt;
		&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;

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

			&#38;lt;div id=&#38;quot;post-&#38;lt;?php the_ID() ?&#38;gt;&#38;quot; class=&#38;quot;&#38;lt;?php thematic_post_class() ?&#38;gt;&#38;quot;&#38;gt;
				&#38;lt;?php thematic_postheader(); ?&#38;gt;
					&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;?php the_content(); ?&#38;gt;

&#38;lt;div id=&#38;quot;archive_tag&#38;quot;&#38;gt;
	&#38;lt;h2&#38;gt;Keywords by popularity&#38;lt;/h2&#38;gt;
		&#38;lt;?php wp_tag_cloud(&#38;#39;format=list&#38;#38;number=0&#38;#38;unit=em&#38;#38;smallest=1&#38;#38;largest=1&#38;#38;orderby=count&#38;#38;order=DESC&#38;#39; );?&#38;gt;
&#38;lt;/div&#38;gt;

&#38;lt;div id=&#38;quot;archive_date&#38;quot;&#38;gt;
	&#38;lt;h2&#38;gt;Sorted by month&#38;lt;/h2&#38;gt;
		&#38;lt;?php wp_get_archives(&#38;#39;format=html&#38;#39;); ?&#38;gt;
&#38;lt;/div&#38;gt;

					&#38;lt;/div&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;

&#38;lt;?php if ( get_post_custom_values(&#38;#39;comments&#38;#39;) ) comments_template() // Add a key/value of &#38;quot;comments&#38;quot; to enable comments on pages! ?&#38;gt;

		&#38;lt;/div&#38;gt;&#38;lt;!-- #content --&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- #container --&#38;gt;

&#38;lt;?php thematic_sidebar() ?&#38;gt;
&#38;lt;?php get_footer() ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Manuel on "Archive template with tag list"</title>
<link>http://themeshaper.com/forums/topic/archive-template-with-tag-list#post-6379</link>
<pubDate>Tue, 08 Sep 2009 09:00:35 +0000</pubDate>
<dc:creator>Manuel</dc:creator>
<guid isPermaLink="false">6379@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Oh, of cause you are right, Chris. Well, i would like to add the following to the &#60;code&#62;thematic_archives&#60;/code&#62; function via functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if ( function_exists(&#38;#39;wp_tag_cloud&#38;#39;) ) : ?&#38;gt;
&#38;lt;h2&#38;gt;Most popular keywords&#38;lt;/h2&#38;gt;
&#38;lt;?php $tag = wp_tag_cloud(&#38;#39;format=list&#38;#38;unit=em&#38;#38;smallest=1&#38;#38;largest=1&#38;#38;orderby=count&#38;#38;order=DESC&#38;#39; );?&#38;gt;
&#38;lt;?php endif; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Creating an extra template file for this and adding the code below &#60;code&#62;&#38;lt;?php thematic_archives(); ?&#38;gt;&#60;/code&#62; works, but i think is a CSS mess to get this stuff display inline with the date &#38;#38; cat lists.&#60;/p&#62;
&#60;p&#62;Would be cool if I could remove “Archives by category” from the &#60;code&#62;thematic_archives&#60;/code&#62; function as well, because I see no need to display both of them.&#60;/p&#62;
&#60;p&#62;Basically it should look like this:&#60;br /&#62;
&#60;a href=&#34;http://img188.imageshack.us/img188/427/archivesidea.png&#34; rel=&#34;nofollow&#34;&#62;http://img188.imageshack.us/img188/427/archivesidea.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;PS: Would be a cool thing to add such a “cat or tag” switch to the “Thematic Configuration Plugin”.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Archive template with tag list"</title>
<link>http://themeshaper.com/forums/topic/archive-template-with-tag-list#post-6376</link>
<pubDate>Mon, 07 Sep 2009 21:10:22 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">6376@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Manuel,&#60;/p&#62;
&#60;p&#62;:)&#60;/p&#62;
&#60;p&#62;This can't work 'cause get_the_tag_list() delivers the tags of the current post. You can use it in single.php, in page.php, or in the loop.&#60;/p&#62;
&#60;p&#62;Just let me know what you're trying to do.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Manuel on "Archive template with tag list"</title>
<link>http://themeshaper.com/forums/topic/archive-template-with-tag-list#post-6375</link>
<pubDate>Mon, 07 Sep 2009 19:37:14 +0000</pubDate>
<dc:creator>Manuel</dc:creator>
<guid isPermaLink="false">6375@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This “edited by me” template is obviously not working, and I know I should start to learn more about PHP than just copy &#38;#38; paste by trail &#38;#38; error, but could someone please fix this for me? (I just dropped &#60;code&#62;&#38;lt;?php echo get_the_tag_list(&#38;#39;&#38;lt;ul&#38;gt;&#38;lt;li&#38;gt;&#38;#39;,&#38;#39;&#38;lt;/li&#38;gt;&#38;lt;li&#38;gt;&#38;#39;,&#38;#39;&#38;lt;/li&#38;gt;&#38;lt;/ul&#38;gt;&#38;#39;); ?&#38;gt;&#60;/code&#62; in there.)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Template Name: Archive with Tags Page
*/
?&#38;gt;
&#38;lt;?php get_header() ?&#38;gt;

	&#38;lt;div id=&#38;quot;container&#38;quot;&#38;gt;
		&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;

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

			&#38;lt;div id=&#38;quot;post-&#38;lt;?php the_ID() ?&#38;gt;&#38;quot; class=&#38;quot;&#38;lt;?php thematic_post_class() ?&#38;gt;&#38;quot;&#38;gt;
    			&#38;lt;?php thematic_postheader(); ?&#38;gt;
				&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;?php the_content(); ?&#38;gt;

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

&#38;lt;?php echo get_the_tag_list(&#38;#39;&#38;lt;ul&#38;gt;&#38;lt;li&#38;gt;&#38;#39;,&#38;#39;&#38;lt;/li&#38;gt;&#38;lt;li&#38;gt;&#38;#39;,&#38;#39;&#38;lt;/li&#38;gt;&#38;lt;/ul&#38;gt;&#38;#39;); ?&#38;gt;

&#38;lt;?php edit_post_link(__(&#38;#39;Edit&#38;#39;, &#38;#39;thematic&#38;#39;),&#38;#39;&#38;lt;span class=&#38;quot;edit-link&#38;quot;&#38;gt;&#38;#39;,&#38;#39;&#38;lt;/span&#38;gt;&#38;#39;) ?&#38;gt;

				&#38;lt;/div&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;

&#38;lt;?php if ( get_post_custom_values(&#38;#39;comments&#38;#39;) ) comments_template() // Add a key/value of &#38;quot;comments&#38;quot; to enable comments on pages! ?&#38;gt;

		&#38;lt;/div&#38;gt;&#38;lt;!-- #content --&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- #container --&#38;gt;

&#38;lt;?php thematic_sidebar() ?&#38;gt;
&#38;lt;?php get_footer() ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>trunte1970 on "How to use tagging and keywords in the best way?"</title>
<link>http://themeshaper.com/forums/topic/how-to-use-tagging-and-keywords-in-the-best-way#post-3851</link>
<pubDate>Wed, 13 May 2009 08:12:33 +0000</pubDate>
<dc:creator>trunte1970</dc:creator>
<guid isPermaLink="false">3851@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Could anyone please explain how to use tagging and keywords in the best way? Should I tag all the headlines of the pages of the blog? How to use keywords?&#60;br /&#62;
thank you.. louise
&#60;/p&#62;</description>
</item>

</channel>
</rss>
