<?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: tagline</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 21 May 2013 23:26:02 +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>seho on "Moving blog description to right of blog title"</title>
<link>http://themeshaper.com/forums/topic/moving-blog-description-to-right-of-blog-title#post-2593</link>
<pubDate>Thu, 26 Mar 2009 12:35:09 +0000</pubDate>
<dc:creator>seho</dc:creator>
<guid isPermaLink="false">2593@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Worked! Thanks,&#60;br /&#62;
Seho
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Moving blog description to right of blog title"</title>
<link>http://themeshaper.com/forums/topic/moving-blog-description-to-right-of-blog-title#post-2591</link>
<pubDate>Thu, 26 Mar 2009 08:37:02 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">2591@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The following code goes into your child theme's style.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#blog-title {display:inline;}
#blog-description {display:inline;}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For more details take a look here: &#60;a href=&#34;/guides/cssadvanced/display/&#34;&#62;The Display Property &#124; HTML Dog&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>seho on "Moving blog description to right of blog title"</title>
<link>http://themeshaper.com/forums/topic/moving-blog-description-to-right-of-blog-title#post-2590</link>
<pubDate>Thu, 26 Mar 2009 06:49:04 +0000</pubDate>
<dc:creator>seho</dc:creator>
<guid isPermaLink="false">2590@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for your response.&#60;br /&#62;
I'm really new to CSS - where would I put that?&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Moving blog description to right of blog title"</title>
<link>http://themeshaper.com/forums/topic/moving-blog-description-to-right-of-blog-title#post-2588</link>
<pubDate>Thu, 26 Mar 2009 06:11:17 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">2588@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;have you tried display: inline?&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>seho on "Moving blog description to right of blog title"</title>
<link>http://themeshaper.com/forums/topic/moving-blog-description-to-right-of-blog-title#post-2584</link>
<pubDate>Thu, 26 Mar 2009 00:30:05 +0000</pubDate>
<dc:creator>seho</dc:creator>
<guid isPermaLink="false">2584@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
How do I re-position the blog tagline (description) from being under the blog name to being beside it.&#60;br /&#62;
Any suggestions?  &#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
