<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>WP Framework Forums Tag: title - Recent Topics</title>
		<link>http://wpframework.com/forums/tags/title</link>
		<description>A blank WordPress Theme Framework</description>
		<language>en-US</language>
		<pubDate>Mon, 06 Sep 2010 21:52:48 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://wpframework.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://wpframework.com/forums/rss/tags/title/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>saffyre9 on "Remove &#187; from title?"</title>
			<link>http://wpframework.com/forums/topic/remove-raquo-from-title#post-402</link>
			<pubDate>Thu, 29 Oct 2009 18:45:21 +0000</pubDate>
			<dc:creator>saffyre9</dc:creator>
			<guid isPermaLink="false">402@http://wpframework.com/forums/</guid>
			<description>&#60;p&#62;I've taken over management of a blog set up by someone else, and using WP Framework. I wanted to install the Headspace 2 plugin for more control over page titles and meta descriptions. I had to remove semantic_title from the &#38;lt;title&#38;gt; tag and change it back to wp_title to get it to work. However, the &#38;raquo; that WP Framework uses in title tags remains at the beginning of my page titles, so they look like&#60;/p&#62;
&#60;p&#62;&#38;gt;&#38;gt; Post title &#124; Some other words&#60;/p&#62;
&#60;p&#62;The code in the header looks like &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;title&#38;gt;&#38;lt;?php wp_title(); ?&#38;gt;&#38;lt;/title&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;So I can't figure out where the &#38;raquo; is coming from and how to get rid of it. Help?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>artfulalibi on "Title Incorrect"</title>
			<link>http://wpframework.com/forums/topic/title-incorrect#post-192</link>
			<pubDate>Fri, 12 Jun 2009 00:50:00 +0000</pubDate>
			<dc:creator>artfulalibi</dc:creator>
			<guid isPermaLink="false">192@http://wpframework.com/forums/</guid>
			<description>&#60;p&#62;Hello, I am working on a local site (WP 2.8), and I setup the to have page as the default, and another page to be the blog area. &#60;/p&#62;
&#60;p&#62;When I navigate to the blog the title tag is incorrect. It has a malformed HTML tag &#38;quot;&#38;amp;raquo,&#38;quot; because the &#38;quot;;&#38;quot; is missing from line 62 in the semantic-classes.php.&#60;/p&#62;
&#60;p&#62;This is not all. The title is still inaccurate. It reads &#38;quot;&#38;gt;&#38;gt;Page Title(no space)Blog Name - Blog description&#38;quot;&#60;/p&#62;
&#60;p&#62;Any help on the second issue would be appreciated. And hopefully you can add the patch to the next release.&#60;/p&#62;
&#60;p&#62;Thanks&#60;/p&#62;
&#60;p&#62;Daniel
&#60;/p&#62;</description>
		</item>
		<item>
			<title>buguletzu on "my framework_title() for seo"</title>
			<link>http://wpframework.com/forums/topic/my-framework_title-for-seo#post-29</link>
			<pubDate>Mon, 16 Mar 2009 13:02:05 +0000</pubDate>
			<dc:creator>buguletzu</dc:creator>
			<guid isPermaLink="false">29@http://wpframework.com/forums/</guid>
			<description>&#60;p&#62;&#60;code&#62;function framework_title( $sep = '&#38;mdash;' ) {&#60;br /&#62;
	if ( is_home() ) : wp_title( '&#38;raquo;', true, 'right' );&#60;br /&#62;
	bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	elseif ( is_single() ) : wp_title( '&#38;raquo;', true, 'right' );&#60;br /&#62;
	echo &#38;quot;In &#38;quot;; $category = get_the_category(); echo $category[0]-&#38;gt;cat_name; echo ' &#38;raquo; '; bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	elseif ( is_page() &#124;&#124; is_paged() ) : wp_title( '&#38;raquo;', true, 'right' );&#60;br /&#62;
	bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	elseif ( is_category() ) : wp_title( 'Category: ', true, 'left' );&#60;br /&#62;
	echo ( ' &#38;raquo; ' ); echo bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	elseif ( is_author() ) : wp_title( 'Archives of ', true, 'left' );&#60;br /&#62;
	echo ( ' &#38;raquo; ' ); echo bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	elseif ( is_archive() ) : wp_title( '* Archives for ', true, 'left' );&#60;br /&#62;
	echo ( ' &#38;raquo; ' ); echo bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	elseif ( is_search() ) : wp_title('', true, 'left' );&#60;br /&#62;
	echo ( ' &#38;raquo; ' ); echo bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	elseif ( is_404() ) : wp_title( '', true, 'left' );&#60;br /&#62;
	echo ( ' &#38;raquo; ' ); echo bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	else : wp_title( '&#38;amp;raquo', true, 'left' );&#60;br /&#62;
	bloginfo( 'description' ); echo ( ' - ' ); bloginfo( 'name' );&#60;/p&#62;
&#60;p&#62;	endif;&#60;br /&#62;
}&#60;/code&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
