<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: Changing blog name ONLY in breadcrumbs of CORONA</title>
		<link>http://www.kriesi.at/support/topic/changing-blog-name-only-in-breadcrumbs-of-corona</link>
		<description>Support Forum - Topic: Changing blog name ONLY in breadcrumbs of CORONA</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 19:58:51 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/changing-blog-name-only-in-breadcrumbs-of-corona" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Changing blog name ONLY in breadcrumbs of CORONA"</title>
			<link>http://www.kriesi.at/support/topic/changing-blog-name-only-in-breadcrumbs-of-corona#post-66685</link>
			<pubDate>Fri, 20 Jul 2012 06:14:05 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">66685@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Replace following line in class-breadcrumbs.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;#39;&#38;lt;p class=&#38;quot;breadcrumb&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;breadcrumb_info&#38;quot;&#38;gt;&#38;#39;.__(&#38;#39;You are here:&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;#39;&#38;lt;/span&#38;gt; &#38;lt;a href=&#38;quot;&#38;#39;.get_bloginfo(&#38;#39;url&#38;#39;).&#38;#39;&#38;quot;&#38;gt;&#38;#39;;
			bloginfo(&#38;#39;name&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;#39;&#38;lt;p class=&#38;quot;breadcrumb&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;breadcrumb_info&#38;quot;&#38;gt;&#38;#39;.__(&#38;#39;You are here:&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;#39;&#38;lt;/span&#38;gt; &#38;lt;a href=&#38;quot;&#38;#39;.get_bloginfo(&#38;#39;url&#38;#39;).&#38;#39;&#38;quot;&#38;gt;&#38;#39;;
			echo &#38;#39;VIAINA Atelier&#38;#39;;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>colorit2 on "Changing blog name ONLY in breadcrumbs of CORONA"</title>
			<link>http://www.kriesi.at/support/topic/changing-blog-name-only-in-breadcrumbs-of-corona#post-66132</link>
			<pubDate>Tue, 17 Jul 2012 16:21:00 +0000</pubDate>
			<dc:creator>colorit2</dc:creator>
			<guid isPermaLink="false">66132@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I would like to shorten, i.e. change the blog &#60;strong&#62;name/title&#60;/strong&#62; concerning &#60;strong&#62;only the output/display of the breadcrumbs&#60;/strong&#62; in CORONA.&#60;/p&#62;
&#60;p&#62;I found the file class-breadcrumbs.php with this code, but don't know the right code for my question:&#60;/p&#62;
&#60;p&#62;Line 25:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
global $post;&#60;br /&#62;
		echo '&#38;lt;p class=&#34;breadcrumb&#34;&#38;gt;&#38;lt;span class=&#34;breadcrumb_info&#34;&#38;gt;'.__('You are here:','avia_framework').'&#38;lt;/span&#38;gt; &#60;a href=&#34;'.get_bloginfo('url').'&#34;&#62;';&#60;br /&#62;
			bloginfo('name');&#60;br /&#62;
			echo &#34;&#60;/a&#62;&#34;;&#60;br /&#62;
			if(!is_front_page()){echo $markup;}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and line 209:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
	/* If $show_home is set and we're not on the front page of the site, link to the home page. */&#60;br /&#62;
	if ( !is_front_page() &#38;amp;&#38;amp; $show_home )&#60;br /&#62;
		$trail[] = '&#60;a href=&#34;' . home_url() . '&#34; title=&#34;' . esc_attr( get_bloginfo( 'name' ) ) . '&#34; rel=&#34;home&#34;&#62;' . $show_home . '&#60;/a&#62;';&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;In WP backend the title of the site is&#60;/p&#62;
&#60;p&#62;&#60;code&#62;VIAINA Atelier &#124; Fotokreationen · Fotogemälde · Experimentelle Malerei&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and should be shortened &#60;strong&#62;only in the output of the breadcrumbs&#60;/strong&#62; to just&#60;/p&#62;
&#60;p&#62;&#60;code&#62;VIAINA Atelier&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Thanks a lot in advance.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
