<?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: page nav</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sat, 18 May 2013 20:03:45 +0000</pubDate>

<item>
<title>madfatter on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-10396</link>
<pubDate>Wed, 03 Mar 2010 16:54:39 +0000</pubDate>
<dc:creator>madfatter</dc:creator>
<guid isPermaLink="false">10396@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Has there been any changes / updates on how this might be accomplished?  I really want to use the theme's sf menu but I'd like to have different page titles from the menu titles.&#60;/p&#62;
&#60;p&#62;Thanks for any advice.&#60;/p&#62;
&#60;p&#62;EDIT:  I found the page menu editor plugin which seems to do the trick.
&#60;/p&#62;</description>
</item>
<item>
<title>cotinus on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-4797</link>
<pubDate>Sun, 28 Jun 2009 22:54:31 +0000</pubDate>
<dc:creator>cotinus</dc:creator>
<guid isPermaLink="false">4797@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm a new thematic user. Really enjoying the options available with the theme.&#60;/p&#62;
&#60;p&#62;Where can I edit the code for the &#34;entry-title&#34; code? In other WordPress themes that I manage, I have custom code I add to the Page template (page.php) that allows me to customize the &#38;lt;h1&#38;gt; heading on page. &#60;/p&#62;
&#60;p&#62;The code I use is:&#60;/p&#62;
&#60;p&#62;&#38;lt;h1 class=&#34;pagetitle&#34;&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
$thisPost = $post -&#38;gt; ID;&#60;br /&#62;
if (get_post_meta($thisPost, main_title, true) != '') {&#60;br /&#62;
echo (get_post_meta($thisPost, main_title, true));&#60;br /&#62;
}&#60;br /&#62;
else {&#60;br /&#62;
the_title();}&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#38;lt;/h1&#38;gt;&#60;/p&#62;
&#60;p&#62;where &#34;pagetitle&#34; is the equivalent of Thematic's &#34;entry-title&#34;&#60;/p&#62;
&#60;p&#62;I've successfully used the above code in several WordPress themes I manage for static sites. It assumes a custom field named &#34;main_title&#34; exists and has content.&#60;/p&#62;
&#60;p&#62;I've looked in the Page template (page.php) but can't find the code. Looked in functions.php, but have had no luck finding any reference to &#34;entry-title&#34;. &#60;/p&#62;
&#60;p&#62;Can someone point me to where the code for &#34;entry-title&#34; is generated? Or give some tips on how to accomplish the same result as my code above?
&#60;/p&#62;</description>
</item>
<item>
<title>johnny baconbitz on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-1165</link>
<pubDate>Thu, 18 Dec 2008 02:57:09 +0000</pubDate>
<dc:creator>johnny baconbitz</dc:creator>
<guid isPermaLink="false">1165@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;What an ass I am. I have several WP sites under construction and got confused. The code above was not from Ian's great Thematic. I have 2 more that are though. Sorry for the confusion and my apologies to Ian.
&#60;/p&#62;</description>
</item>
<item>
<title>johnny baconbitz on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-1164</link>
<pubDate>Thu, 18 Dec 2008 01:15:39 +0000</pubDate>
<dc:creator>johnny baconbitz</dc:creator>
<guid isPermaLink="false">1164@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Answer here, courtesy of Davesgonebananas over on WP.org forums.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;entry&#38;quot;&#38;gt;
    &#38;lt;?php if (!is_page()) { ?&#38;gt;
        &#38;lt;h3 &#38;lt;?php if (is_page()) echo &#38;#39;style=&#38;quot;margin-bottom: 20px;&#38;quot; &#38;#39; ?&#38;gt;class=&#38;quot;entrytitle&#38;quot; id=&#38;quot;post-&#38;lt;?php the_ID(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;a title=&#38;quot;Article-Link (Permalink)&#38;quot; href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt; &#38;lt;?php edit_post_link(&#38;#39;&#38;lt;img class=&#38;quot;editpost&#38;quot; alt=&#38;quot;Edit&#38;quot; src=&#38;quot;&#38;#39; . get_bloginfo(&#38;#39;template_directory&#38;#39;) . &#38;#39;/images/edit.gif&#38;quot; /&#38;gt;&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;&#38;#39;); ?&#38;gt;&#38;lt;/h3&#38;gt;
    &#38;lt;?php } ?&#38;gt;
&#38;lt;div class=&#38;quot;entrymeta1&#38;quot;&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>johnny baconbitz on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-1162</link>
<pubDate>Wed, 17 Dec 2008 22:45:34 +0000</pubDate>
<dc:creator>johnny baconbitz</dc:creator>
<guid isPermaLink="false">1162@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Found the section of code that needs surgery. Trouble is when I deleted it it killed the title of my post on my front page. I want to keep that but kill the title on the static pages like &#34;about&#34; and &#34;contact&#34;. Here is one of my static pages: &#60;a href=&#34;http://thedadreport.com/about/&#34; rel=&#34;nofollow&#34;&#62;http://thedadreport.com/about/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Code from index.php that needs surgery:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;h3 &#38;lt;?php if (is_page()) echo &#38;#39;style=&#38;quot;margin-bottom: 20px;&#38;quot; &#38;#39; ?&#38;gt;class=&#38;quot;entrytitle&#38;quot; id=&#38;quot;post-&#38;lt;?php the_ID(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;a title=&#38;quot;Article-Link (Permalink)&#38;quot; href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt; &#38;lt;?php edit_post_link(&#38;#39;&#38;lt;img class=&#38;quot;editpost&#38;quot; alt=&#38;quot;Edit&#38;quot; src=&#38;quot;&#38;#39; . get_bloginfo(&#38;#39;template_directory&#38;#39;) . &#38;#39;/images/edit.gif&#38;quot; /&#38;gt;&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;&#38;#39;); ?&#38;gt;&#38;lt;/h3&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>johnny baconbitz on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-1159</link>
<pubDate>Wed, 17 Dec 2008 21:57:35 +0000</pubDate>
<dc:creator>johnny baconbitz</dc:creator>
<guid isPermaLink="false">1159@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;There is a discussion on this here: &#60;a href=&#34;http://wordpress.org/support/topic/210632&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/210632&#60;/a&#62;&#60;br /&#62;
However, I'm not fluent in php and I can't find where or on what page in Thematic to make the double titles go away. I'd like to figure this out because I'm making some sites where clients will be adding pages and I don't want to have to follow them up with a custom menu.&#60;br /&#62;
I'm assuming it would be in the index.php page? Many thanks in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>johnny baconbitz on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-1007</link>
<pubDate>Wed, 19 Nov 2008 22:33:42 +0000</pubDate>
<dc:creator>johnny baconbitz</dc:creator>
<guid isPermaLink="false">1007@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Ian,&#60;br /&#62;
Yeah I saw that bit about the custom menu. In fact I've read every thing you've written about child-themes at least 5 times, love it. There are times where I know I just want to use WP's menu . . . so does anyone know how to eliminate the doubling up?
&#60;/p&#62;</description>
</item>
<item>
<title>Ian Stewart on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-996</link>
<pubDate>Mon, 17 Nov 2008 13:41:23 +0000</pubDate>
<dc:creator>Ian Stewart</dc:creator>
<guid isPermaLink="false">996@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This is why I prefer using custom-coded menus. I show an example here: &#60;a href=&#34;http://themeshaper.com/blog/functions-php-wordpress-child-themes/&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/blog/functions-php-wordpress-child-themes/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>johnny baconbitz on "Page Navigation Links repeat Title on Static Pages"</title>
<link>http://themeshaper.com/forums/topic/page-navigation-links-repeat-title-on-static-pages#post-990</link>
<pubDate>Sat, 15 Nov 2008 02:21:28 +0000</pubDate>
<dc:creator>johnny baconbitz</dc:creator>
<guid isPermaLink="false">990@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello.&#60;br /&#62;
When I'm making static pages, (manage &#38;gt; pages &#38;gt; write page) the Title (which is also the page nav link) is repeated in the text area below. For example, on the &#34;About Us&#34; page, on the actual page below the nav the first thing you see is &#34;About Us&#34; repeated. I'd like to get that out of there so I could put a different heading in there without affecting the title of the page. The repeated info is a &#34;h1&#34; with a class of &#34;.entry-title&#34;.&#60;br /&#62;
Many thanks in advance,&#60;br /&#62;
E
&#60;/p&#62;</description>
</item>

</channel>
</rss>
