<?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: Adding Permalink at end of each blog post</title>
		<link>http://www.kriesi.at/support/topic/adding-permalink-at-end-of-each-blog-post</link>
		<description>Support Forum - Topic: Adding Permalink at end of each blog post</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 04:40:36 +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/adding-permalink-at-end-of-each-blog-post" rel="self" type="application/rss+xml" />

		<item>
			<title>outtacontext on "Adding Permalink at end of each blog post"</title>
			<link>http://www.kriesi.at/support/topic/adding-permalink-at-end-of-each-blog-post#post-63713</link>
			<pubDate>Wed, 04 Jul 2012 14:27:59 +0000</pubDate>
			<dc:creator>outtacontext</dc:creator>
			<guid isPermaLink="false">63713@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Perfect. Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "Adding Permalink at end of each blog post"</title>
			<link>http://www.kriesi.at/support/topic/adding-permalink-at-end-of-each-blog-post#post-62938</link>
			<pubDate>Sat, 30 Jun 2012 01:41:38 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">62938@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Open format-standard.php located in the theme's includes folder. Replace this snippet:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*
echo &#38;#39;&#38;lt;span class=&#38;quot;blog-author minor-meta&#38;quot;&#38;gt;&#38;#39;.__(&#38;#39;by &#38;#39;,&#38;#39;avia_framework&#38;#39;);
the_author_posts_link();
echo &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;quot;text-sep&#38;quot;&#38;gt;/&#38;lt;/span&#38;gt;&#38;#39;;

echo &#38;#39;&#38;lt;span class=&#38;quot;blog-permalink minor-meta&#38;quot;&#38;gt;&#38;#39;;
echo &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;#permalink&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
echo &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;
*/&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;With this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/*
echo &#38;#39;&#38;lt;span class=&#38;quot;blog-author minor-meta&#38;quot;&#38;gt;&#38;#39;.__(&#38;#39;by &#38;#39;,&#38;#39;avia_framework&#38;#39;);
the_author_posts_link();
echo &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;span class=&#38;quot;text-sep&#38;quot;&#38;gt;/&#38;lt;/span&#38;gt;&#38;#39;;
*/

echo &#38;#39;&#38;lt;span class=&#38;quot;blog-permalink minor-meta&#38;quot;&#38;gt;&#38;#39;;
echo &#38;quot;&#38;lt;a href=&#38;#39;&#38;quot;.get_permalink().&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;#permalink&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
echo &#38;#39;&#38;lt;/span&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;What this should do is uncomment the built-in permalink.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>outtacontext on "Adding Permalink at end of each blog post"</title>
			<link>http://www.kriesi.at/support/topic/adding-permalink-at-end-of-each-blog-post#post-62239</link>
			<pubDate>Tue, 26 Jun 2012 11:43:13 +0000</pubDate>
			<dc:creator>outtacontext</dc:creator>
			<guid isPermaLink="false">62239@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Right now, in the Sentence theme, the title of each blog post is its permalink. I also want to add the word and link PERMALINK underneath each post on the same line as COMMENTS, LIKES, etc. &#60;/p&#62;
&#60;p&#62;I found the php that creates the permalink in the title:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;&#38;lt;?php _e(&#38;#39;Permanent Link:&#38;#39;,&#38;#39;avia_framework&#38;#39;)?&#38;gt; &#38;lt;?php the_title(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I'd like to know two things: 1. what is the correct php to do this (is it the following)?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;a href=&#38;quot;&#38;lt;?php echo get_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;&#38;lt;?php _e(&#38;#39;Permanent Link:&#38;#39;,&#38;#39;avia_framework&#38;#39;)?&#38;gt; PERMALINK ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And, 2. where shall I place this to accomplish this task? What file and where in that file. Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
