<?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 User Favorites: sciamannikoo</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 20 Jun 2013 06:29:15 +0000</pubDate>

<item>
<title>Direct Sponsor on "thematic_content filter not working properly?"</title>
<link>http://themeshaper.com/forums/topic/thematic_content-filter-not-working-properly#post-18211</link>
<pubDate>Sun, 09 Jan 2011 00:06:04 +0000</pubDate>
<dc:creator>Direct Sponsor</dc:creator>
<guid isPermaLink="false">18211@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Check the thread I linked to above for the solution. Your custom loop requires thematic_abovepost().
&#60;/p&#62;</description>
</item>
<item>
<title>Direct Sponsor on "thematic_content filter not working properly?"</title>
<link>http://themeshaper.com/forums/topic/thematic_content-filter-not-working-properly#post-18206</link>
<pubDate>Sat, 08 Jan 2011 22:04:29 +0000</pubDate>
<dc:creator>Direct Sponsor</dc:creator>
<guid isPermaLink="false">18206@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm stuck on this as well. I'm attempting to figure it out at the following thread: &#60;a href=&#34;http://themeshaper.com/forums/topic/adding-a-list-of-recent-posts-to-a-custom-page-template&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/adding-a-list-of-recent-posts-to-a-custom-page-template&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_content filter not working properly?"</title>
<link>http://themeshaper.com/forums/topic/thematic_content-filter-not-working-properly#post-12632</link>
<pubDate>Thu, 27 May 2010 09:39:13 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">12632@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've created a page template called discografia.php.&#60;br /&#62;
This page is identical to the index.php.&#60;/p&#62;
&#60;p&#62;On my functions.php, I've this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function tamtando_more_text($content) {
	$content = &#38;#39; ... continua ... &#38;#39;;
	return $content;
}

add_filter(&#38;#39;more_text&#38;#39;, &#38;#39;tamtando_more_text&#38;#39;);

function tamtando_content($content) {
	if(is_page()){
		$content= &#38;#39;full&#38;#39;;
	}
	return $content;
}
add_filter(&#38;#39;thematic_content&#38;#39;, &#38;#39;tamtando_content&#38;#39;);

// The Index Loop
function remove_index_loop(){
	remove_action(&#38;#39;thematic_indexloop&#38;#39;, &#38;#39;thematic_index_loop&#38;#39;);
}
add_action(&#38;#39;init&#38;#39;,&#38;#39;remove_index_loop&#38;#39;);

function tamtando_index_loop() {
	global $options;
	foreach ($options as $value) {
		if (get_option( $value[&#38;#39;id&#38;#39;] ) === FALSE) { $$value[&#38;#39;id&#38;#39;] = $value[&#38;#39;std&#38;#39;]; }
		else { $$value[&#38;#39;id&#38;#39;] = get_option( $value[&#38;#39;id&#38;#39;] ); }
		}

		$query_string = &#38;#39;&#38;#39;;
		if(is_page_template()){
			if(is_page_template(&#38;#39;discografia.php&#38;#39;)) {
				$query_string = &#38;#39;category_name=discografia&#38;#39;;
			}
		}

		global $wp_query;

		if($query_string) {
			$query_string .= &#38;#39;&#38;#38;posts_per_page=-1&#38;#39;;
			query_posts($query_string);
		}

		/* Count the number of posts so we can insert a widgetized area */ $count = 1;
		while ( have_posts() ) : 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 thematic_content(); ?&#38;gt;

				&#38;lt;?php wp_link_pages(&#38;#39;before=&#38;lt;div class=&#38;quot;page-link&#38;quot;&#38;gt;&#38;#39; .__(&#38;#39;Pages:&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;#38;after=&#38;lt;/div&#38;gt;&#38;#39;) ?&#38;gt;
				&#38;lt;/div&#38;gt;
				&#38;lt;?php thematic_postfooter(); ?&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;

				&#38;lt;?php comments_template();

				if ($count==$thm_insert_position) {
						get_sidebar(&#38;#39;index-insert&#38;#39;);
				}
				$count = $count + 1;
		endwhile;
}
add_action(&#38;#39;thematic_indexloop&#38;#39;, &#38;#39;tamtando_index_loop&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The page is here: &#60;a href=&#34;http://tamtando.sciamanna.me/il-gruppo-musicale/discografia/&#34; rel=&#34;nofollow&#34;&#62;http://tamtando.sciamanna.me/il-gruppo-musicale/discografia/&#60;/a&#62;&#60;br /&#62;
...and it doesn't work.&#60;br /&#62;
As &#34;tamtando_content()&#34; says, if I'm in a page (and, despite the code inside, &#60;a href=&#34;http://tamtando.sciamanna.me/il-gruppo-musicale/discografia/&#34; rel=&#34;nofollow&#34;&#62;http://tamtando.sciamanna.me/il-gruppo-musicale/discografia/&#60;/a&#62; is a page and is using the right page template), I must see the full content (or excerpt if I used the &#34;more&#34; shortcode) including the attachments.&#60;/p&#62;
&#60;p&#62;Instead I'm seeing an archive-like page: why?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "breadcrumbs before any other content"</title>
<link>http://themeshaper.com/forums/topic/breadcrumbs-before-any-other-content#post-12475</link>
<pubDate>Wed, 19 May 2010 13:02:33 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">12475@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i am reasonably sure that archives.php has all the same hooks as the others.... that is the nature of the framework I believe.  when i try it out&#60;/p&#62;
&#60;p&#62;add_action ('thematic_navigation_above','disform_addbreadcrumbs',1);&#60;/p&#62;
&#60;p&#62;idk about your other action... where is the thematic_abovepagetop hook?  i havent heard of that one before.
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "breadcrumbs before any other content"</title>
<link>http://themeshaper.com/forums/topic/breadcrumbs-before-any-other-content#post-12473</link>
<pubDate>Wed, 19 May 2010 12:38:26 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">12473@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello all.&#60;/p&#62;
&#60;p&#62;I've just edited my functions.php in order to show breadcrumbs right after the &#60;code&#62;&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;&#60;/code&#62;.&#60;/p&#62;
&#60;p&#62;This is the code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function disform_addbreadcrumbs() {
	if(function_exists(&#38;#39;bcn_display&#38;#39;)) {
		echo(&#38;#39;&#38;lt;div id=&#38;quot;breadcrumb-navxt&#38;quot;&#38;gt;&#38;#39;);
		bcn_display();
		echo(&#38;#39;&#38;lt;/div&#38;gt;&#38;#39;);
	}
}
add_action (&#38;#39;thematic_navigation_above&#38;#39;,&#38;#39;disform_addbreadcrumbs&#38;#39;,1);
add_action (&#38;#39;thematic_abovepagetop&#38;#39;,&#38;#39;disform_addbreadcrumbs&#38;#39;,1);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Now, this will work on page.php, index.php and single.php, but I wonder how can I do the same in all other pages (archive.php, archives.php, etc...).&#60;/p&#62;
&#60;p&#62;I don't find the right hook/action to use.
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() and thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-and-thematic_postfooter#post-3692</link>
<pubDate>Sun, 03 May 2009 14:19:43 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3692@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Chris, I'm very curious to see how you managed to do the same. At the moment I don't see other solutions, but as you managed to do it without adding markups, there should be indeed something I miss :)
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "thematic_postheader() and thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-and-thematic_postfooter#post-3690</link>
<pubDate>Sun, 03 May 2009 13:15:49 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">3690@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok... You're going the easy way by adding additional markup. &#60;/p&#62;
&#60;p&#62;About 2 years ago I wrote my first child theme &#60;a href=&#34;http://www.wupperpiraten.de/wp-content/uploads/2007/11/neues_design.png&#34;&#62;&#34;The Dark Side&#34;&#60;/a&#62; for dKret3 which is based on the Sandbox markup too. I used graphics with rounded corners but without the need of additional markup. Takes more time but is definitely a 'cleaner' solution.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Chris
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() and thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-and-thematic_postfooter#post-3688</link>
<pubDate>Sun, 03 May 2009 11:27:59 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3688@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Because I wasn't so clear on my example.&#60;/p&#62;
&#60;p&#62;This is what I exactly need:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;post-container&#38;quot;&#38;gt;
&#38;lt;div class=&#38;quot;post-container-top&#38;quot;&#38;gt;&#38;lt;/div&#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;#39;&#38;#39;.__(&#38;#39;Read More &#38;lt;span class=&#38;quot;meta-nav&#38;quot;&#38;gt;&#38;amp;raquo;&#38;lt;/span&#38;gt;&#38;#39;, &#38;#39;thematic&#38;#39;).&#38;#39;&#38;#39;); ?&#38;gt;

				&#38;lt;?php wp_link_pages(&#38;#39;before=&#38;lt;div class=&#38;quot;page-link&#38;quot;&#38;gt;&#38;#39; .__(&#38;#39;Pages:&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;#38;after=&#38;lt;/div&#38;gt;&#38;#39;) ?&#38;gt;
				&#38;lt;/div&#38;gt;
				&#38;lt;?php thematic_postfooter(); ?&#38;gt;
			&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;
&#38;lt;div class=&#38;quot;post-container-bottom&#38;quot;&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But is not just that. I had to change so many things, like, for instance, the navigations DIVs position:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;container&#38;quot;&#38;gt;
		&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;

			&#38;lt;div id=&#38;quot;nav-above&#38;quot; class=&#38;quot;navigation&#38;quot;&#38;gt;
                &#38;lt;?php if(function_exists(&#38;#39;wp_pagenavi&#38;#39;)) { ?&#38;gt;
                &#38;lt;?php wp_pagenavi(); ?&#38;gt;
                &#38;lt;?php } else { ?&#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;laquo;&#38;lt;/span&#38;gt; Older posts&#38;#39;, &#38;#39;thematic&#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;raquo;&#38;lt;/span&#38;gt;&#38;#39;, &#38;#39;thematic&#38;#39;)) ?&#38;gt;&#38;lt;/div&#38;gt;
				&#38;lt;?php } ?&#38;gt;
			&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php thematic_sidebar() ?&#38;gt;

			&#38;lt;div id=&#38;quot;nav-below&#38;quot; class=&#38;quot;navigation&#38;quot;&#38;gt;
                &#38;lt;?php if(function_exists(&#38;#39;wp_pagenavi&#38;#39;)) { ?&#38;gt;
                &#38;lt;?php wp_pagenavi(); ?&#38;gt;
                &#38;lt;?php } else { ?&#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;laquo;&#38;lt;/span&#38;gt; Older posts&#38;#39;, &#38;#39;thematic&#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;raquo;&#38;lt;/span&#38;gt;&#38;#39;, &#38;#39;thematic&#38;#39;)) ?&#38;gt;&#38;lt;/div&#38;gt;
				&#38;lt;?php } ?&#38;gt;
			&#38;lt;/div&#38;gt;

&#38;lt;?php get_footer() ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;These things I don't think can be solved filtering functions, so as I had to change a lot, I've solved also my first issue.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "thematic_postheader() and thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-and-thematic_postfooter#post-3686</link>
<pubDate>Sun, 03 May 2009 11:14:00 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">3686@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Andrea,&#60;/p&#62;
&#60;p&#62;don't understand why filtering means rewriting the whole code.&#60;/p&#62;
&#60;p&#62;For instance, adding the first divs above entry-title would require the following function:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function my_start($posttitle) {
  $content = &#38;#39;&#38;lt;div class=&#38;quot;myheaderdiv&#38;quot;&#38;gt;&#38;lt;/div&#38;gt; &#38;lt;!-- SOMEHOW ADDED --&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
  $content .= &#38;#39;&#38;lt;div class=&#38;quot;post-contents&#38;quot;&#38;gt; &#38;lt;!-- SOMEHOW ADDED --&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
  $content .= $posttitle;
  return $content;}
add_filter(&#38;#39;thematic_postheader_posttitle&#38;#39;, &#38;#39;my_start&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() and thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-and-thematic_postfooter#post-3674</link>
<pubDate>Sat, 02 May 2009 16:42:12 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3674@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yes, but that means rewriting the whole code.&#60;br /&#62;
On this case, I've eventually found a better (for me) option writing my own index.php, page.php, archive.php, etc. pages.&#60;/p&#62;
&#60;p&#62;Thank anyway.&#60;/p&#62;
&#60;p&#62;Andrea
&#60;/p&#62;</description>
</item>
<item>
<title>dannydamnboy on "thematic_postheader() and thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-and-thematic_postfooter#post-3673</link>
<pubDate>Sat, 02 May 2009 13:46:58 +0000</pubDate>
<dc:creator>dannydamnboy</dc:creator>
<guid isPermaLink="false">3673@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;You have to filter those functions.
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() and thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-and-thematic_postfooter#post-3633</link>
<pubDate>Thu, 30 Apr 2009 12:45:26 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3633@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I just want to add a note.&#60;/p&#62;
&#60;p&#62;So far, I've walked around the problem, playing with the CSS, but is not a real clean solution. I hope there is a way to solve my problem playing with the hooks.&#60;/p&#62;
&#60;p&#62;Andrea
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() and thematic_postfooter()"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-and-thematic_postfooter#post-3595</link>
<pubDate>Tue, 28 Apr 2009 16:19:32 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3595@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello!&#60;/p&#62;
&#60;p&#62;Without modifying index.php, single.php, hooks-filters.phpetc., there is a way to add something on the two mentioned functions?&#60;/p&#62;
&#60;p&#62;I want to add a DIV on each funtion, to have something like that (see the 4 line ending with &#34;&#38;lt;!-- SOMEHOW ADDED --&#38;gt;&#34;):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;post-xxx&#38;quot; class=&#38;quot;... post ...&#38;quot;&#38;gt;
&#38;lt;div class=&#38;quot;myheaderdiv&#38;quot;&#38;gt;&#38;lt;/div&#38;gt; &#38;lt;!-- SOMEHOW ADDED --&#38;gt;
&#38;lt;div class=&#38;quot;post-contents&#38;quot;&#38;gt; &#38;lt;!-- SOMEHOW ADDED --&#38;gt;
&#38;lt;h1 class=&#38;quot;entry-title&#38;quot;&#38;gt;
&#38;lt;/h1&#38;gt;
&#38;lt;div class=&#38;quot;entry-meta&#38;quot;&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;div class=&#38;quot;entry-utility&#38;quot;&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt; &#38;lt;!-- SOMEHOW ADDED --&#38;gt;
&#38;lt;div class=&#38;quot;myfooterdiv&#38;quot;&#38;gt;&#38;lt;/div&#38;gt; &#38;lt;!-- SOMEHOW ADDED --&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I need to do that as my template's layout needs a header and footer image, that uses transparency and can't be overlapped to entry's background (what is supposed to be in &#34;post-contents&#34;).&#60;/p&#62;
&#60;p&#62;Any tip?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Andrea
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3459</link>
<pubDate>Thu, 23 Apr 2009 08:55:33 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3459@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Nevermind, sorry: I've forgot to use custom function names :)
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3457</link>
<pubDate>Thu, 23 Apr 2009 08:44:02 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3457@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks again Chris.&#60;/p&#62;
&#60;p&#62;That sound the best solution for my case.&#60;/p&#62;
&#60;p&#62;I've created the function.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

function remove_parts() {
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_blogtitle&#38;#39;,3);
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_blogdescription&#38;#39;,5);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_parts&#38;#39;);

// Create the blog title
// In the header div
function thematic_blogtitle() { ?&#38;gt;
    		&#38;lt;div id=&#38;quot;blog-title&#38;quot;&#38;gt;&#38;lt;h1&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_option(&#38;#39;home&#38;#39;) ?&#38;gt;/&#38;quot;
    		title=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;) ?&#38;gt;&#38;quot; rel=&#38;quot;home&#38;quot;&#38;gt;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;) ?&#38;gt;
    		&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;?php }
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_blogtitle&#38;#39;,3);

// Create the blog description
// In the header div
function thematic_blogdescription() {
?&#38;gt;
    		&#38;lt;div id=&#38;quot;blog-description&#38;quot;&#38;gt;&#38;lt;?php bloginfo(&#38;#39;description&#38;#39;) ?&#38;gt;&#38;lt;/div&#38;gt;
&#38;lt;?php }

add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_blogdescription&#38;#39;,5);
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And now I get this error:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;Fatal error: Cannot redeclare thematic_blogtitle() (previously declared in /home/content/.../wp-content/themes/sciamannablogga/functions.php:12) in /home/content/.../wp-content/themes/thematic/library/extensions/hooks-filters.php on line 36&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Do I (most likely) miss something?
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3451</link>
<pubDate>Thu, 23 Apr 2009 06:58:31 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">3451@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ok .. you still can implement your changes using the functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_parts() {
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_blogtitle&#38;#39;,3);
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_blogdescription&#38;#39;,5);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_parts&#38;#39;);

function my_blogtitle() {
  &#38;lt;-- your code --&#38;gt;
}
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;my_blogtitle&#38;#39;,3);

function my_blog_description{
  &#38;lt;-- your code --&#38;gt;
}
add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;my_blogdescription&#38;#39;,5);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can define whatever &#38;lt;Hx&#38;gt; you want for the header.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3440</link>
<pubDate>Wed, 22 Apr 2009 21:18:10 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3440@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've forgot that I've created my own header.php exactly because I was missing my H1 everywhere in the website.&#60;/p&#62;
&#60;p&#62;Well, I still think that blog's title must be kept as H1 everywhere and as you too confirmed, the &#34;holes&#34; between headers could be a problem. Me too, most of the times, I use a more tag before any h2 (well, actually h3 for me), but I never know, but I never know if I may need one day on the excerpt as well.&#60;/p&#62;
&#60;p&#62;However I give up and I think I'll rollback the original header.php and use a different approach, as I really don't want to touch any of the original code.&#60;br /&#62;
Well, actually I have to edit a lot of posts, as I currently use H3 as a main header inside a post (as I've always used H2 as post's title), but this can be done quite fast. &#60;/p&#62;
&#60;p&#62;I just hope you'll consider, in the future, adding a template option (or something else) to let admins select header's behavior (a. like is now; b. same as frontpage).&#60;/p&#62;
&#60;p&#62;Thanks again to both Ian and Chris.
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3433</link>
<pubDate>Wed, 22 Apr 2009 16:16:12 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">3433@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The holes between headers &#60;em&#62;could&#60;/em&#62; be considered a problem however. I write my posts using the more tag when I need h2 tags, which solves this.
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3432</link>
<pubDate>Wed, 22 Apr 2009 16:13:51 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">3432@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;On the home page it's&#60;/p&#62;
&#60;p&#62;div blog title&#60;br /&#62;
h1 blog description&#60;br /&#62;
…&#60;br /&#62;
h2 post titles&#60;/p&#62;
&#60;p&#62;on single pages it's&#60;/p&#62;
&#60;p&#62;div blog title&#60;br /&#62;
div blog description&#60;br /&#62;
…&#60;br /&#62;
h1 post titles&#60;/p&#62;
&#60;p&#62;There shouldn't be any duplication of h1 tags.
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3431</link>
<pubDate>Wed, 22 Apr 2009 16:08:35 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3431@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Yes, this is a workaround, but is not an actual solution.&#60;/p&#62;
&#60;p&#62;My concern is not the style that, I agree with you, could be solved working on IDs and classes.&#60;/p&#62;
&#60;p&#62;I don't want to be tiresome, but I hope you'll understand my point.&#60;/p&#62;
&#60;p&#62;The problem is the structure of the document, the HTML tags. I might be wrong, but is not correct to have two consecutive headers of the same level (H1) or holes between headers (H1 followed by H3).&#60;/p&#62;
&#60;p&#62;Of course the document works and also for the accessibility everything would works fine, but if the blog's title is &#38;lt;h1&#38;gt;, I expect to have post's title &#38;lt;h2&#38;gt;, as we can't consider blog's title at the same level of post's title.&#60;/p&#62;
&#60;p&#62;Is like having a book where, on the index, each article's title id printed with the same identation of newspaper's title.
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3427</link>
<pubDate>Wed, 22 Apr 2009 14:46:25 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">3427@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I find the easiest thing to do is style the class or the id opposed to the tag. For example&#60;/p&#62;
&#60;p&#62;#blog-title {background:red;}&#60;br /&#62;
#blog-description {background:pink}&#60;br /&#62;
.entry-title {background:green;}&#60;/p&#62;
&#60;p&#62;instead of&#60;/p&#62;
&#60;p&#62;h1 {background:red;}&#60;br /&#62;
h2 {background:green;}&#60;/p&#62;
&#60;p&#62;And if you look at the source, you shouldn't have any duplicate h1 tags on your single pages and posts.
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3422</link>
<pubDate>Wed, 22 Apr 2009 13:57:19 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3422@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Well, I'm not sure what are you talking about (I've never really understood what a SVN copy is and how to use it), but I see the work &#34;solution&#34;, so I'll (im)patiently wait ;)&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3420</link>
<pubDate>Wed, 22 Apr 2009 13:46:28 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">3420@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Let me see what we can do to provide a short-term solution using a SVN copy.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3412</link>
<pubDate>Wed, 22 Apr 2009 08:02:58 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3412@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you Chris.&#60;/p&#62;
&#60;p&#62;I understand what you mean, but as blog's title is an H1 everywhere, also in single pages, having H1 in post's titles doesn't make much sense, does it?&#60;/p&#62;
&#60;p&#62;Suppose I have this structure on my frontpage:&#60;/p&#62;
&#60;p&#62;'&#38;lt;h1&#38;gt;Blog's title&#38;lt;/h1&#38;gt;&#60;br /&#62;
&#38;lt;h2&#38;gt;Post 001&#38;lt;/h2&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;Blah, blah, blah, blah&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;h3&#38;gt;Something&#38;lt;/h3&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah.&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;h3&#38;gt;Again something&#38;lt;/h3&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah.&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;--more--&#38;gt;'&#60;/p&#62;
&#60;p&#62;On single page I would have:&#60;/p&#62;
&#60;p&#62;'&#38;lt;h1&#38;gt;Blog's title&#38;lt;/h1&#38;gt;&#60;br /&#62;
&#38;lt;h1&#38;gt;Post 001&#38;lt;/h1&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;Blah, blah, blah, blah&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;h3&#38;gt;Something&#38;lt;/h3&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah.&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;h3&#38;gt;Again something&#38;lt;/h3&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah.&#38;lt;/p&#38;gt;&#60;br /&#62;
&#38;lt;--more--&#38;gt;&#38;lt;p&#38;gt;Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah.&#38;lt;/p&#38;gt;&#38;lt;p&#38;gt;Blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah, blah.&#38;lt;/p&#38;gt;'&#60;/p&#62;
&#60;p&#62;As you see, document's struture is broken as I have 2 consecutive &#38;lt;h1&#38;gt; and a missing &#38;lt;h2&#38;gt;.&#60;/p&#62;
&#60;p&#62;I know that this is not an actual issue, but I like to keep my page's structures consistent, not to mention that, on my specific case, posts' titles would have the same style on both frontpage and single page.
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3372</link>
<pubDate>Mon, 20 Apr 2009 19:14:06 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">3372@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;on your home / frontpage the important thing is your blog / blog title therefore it's an H1. On a single page or page it's the content / the heading therefore the entry-title gets the H1.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>sciamannikoo on "thematic_postheader() - Different heading on index and single"</title>
<link>http://themeshaper.com/forums/topic/thematic_postheader-different-heading-on-index-and-single#post-3363</link>
<pubDate>Mon, 20 Apr 2009 14:10:45 +0000</pubDate>
<dc:creator>sciamannikoo</dc:creator>
<guid isPermaLink="false">3363@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Before changing something on hooks-filters.php (besides, I don't know yet how), I would like to understand why thematic_postheader() uses &#38;lt;h2&#38;gt; for index.php posts and &#38;lt;h1&#38;gt; on single.php.&#60;/p&#62;
&#60;p&#62;I usually use &#38;lt;h1&#38;gt; on blog's title and &#38;lt;h2&#38;gt; on posts' titles, therefore I have quite some sisues styling my template.&#60;/p&#62;
&#60;p&#62;But maybe I've always used the wrong approach styling my templates. So, I would like to know if there is a special reason for using two different headings for posts't titles.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>

</channel>
</rss>
