<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Frontend Admin Menu in WordPress</title>
	<atom:link href="http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 29 Jul 2010 06:03:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: JS</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-92</link>
		<dc:creator>JS</dc:creator>
		<pubDate>Tue, 27 Apr 2010 10:32:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-92</guid>
		<description>Any idea how this can be implemented while forcing ssl? I have something similar but forcing ssl causes the user to be redirected to the https: wp-login and then onto the back end rendering the solution unusable.

Any help most welcome.</description>
		<content:encoded><![CDATA[<p>Any idea how this can be implemented while forcing ssl? I have something similar but forcing ssl causes the user to be redirected to the https: wp-login and then onto the back end rendering the solution unusable.</p>
<p>Any help most welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: No_limits43</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-91</link>
		<dc:creator>No_limits43</dc:creator>
		<pubDate>Thu, 22 Oct 2009 19:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-91</guid>
		<description>You can have up to ten text widgets. ,</description>
		<content:encoded><![CDATA[<p>You can have up to ten text widgets. ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mkhululi</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-90</link>
		<dc:creator>Mkhululi</dc:creator>
		<pubDate>Fri, 07 Aug 2009 12:51:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-90</guid>
		<description>Sorry. Posting for a wrong tutorial.... this should go to the login demo tutorial...</description>
		<content:encoded><![CDATA[<p>Sorry. Posting for a wrong tutorial&#8230;. this should go to the login demo tutorial&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mkhululi</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-89</link>
		<dc:creator>Mkhululi</dc:creator>
		<pubDate>Fri, 07 Aug 2009 12:29:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-89</guid>
		<description>I tried the solution on a website I am working on. Here is a scenario :

   I put all the code inside my header file and inside the IF condition I have put the form just like in your demo.&lt;strong&gt; All users must be logged on to see the site.&lt;strong&gt;
My ELSE part will be my entire page. The contents of the &lt;strong&gt;header file&lt;/strong&gt;, everything inside the &lt;strong&gt;wrapper&lt;/strong&gt; and the end of the footer. I close the ELSE brace at the end of the footer.

Problem: I am getting an error when I close the brace for the ELSE part of the IF statement.

Here is a small snippet:
&lt;code&gt;
if (condition){
   ///form goes here
}else {
    //rest of the header file
    //wrapper  opens here and closes at the end of the index file
} // this is done at the end of the footer. But tells me there is an error
&lt;/code&gt;

What am I missing?</description>
		<content:encoded><![CDATA[<p>I tried the solution on a website I am working on. Here is a scenario :</p>
<p>   I put all the code inside my header file and inside the IF condition I have put the form just like in your demo.<strong> All users must be logged on to see the site.</strong><strong><br />
My ELSE part will be my entire page. The contents of the </strong><strong>header file</strong>, everything inside the <strong>wrapper</strong> and the end of the footer. I close the ELSE brace at the end of the footer.</p>
<p>Problem: I am getting an error when I close the brace for the ELSE part of the IF statement.</p>
<p>Here is a small snippet:<br />
<code><br />
if (condition){<br />
   ///form goes here<br />
}else {<br />
    //rest of the header file<br />
    //wrapper  opens here and closes at the end of the index file<br />
} // this is done at the end of the footer. But tells me there is an error<br />
</code></p>
<p>What am I missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elpie</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-88</link>
		<dc:creator>Elpie</dc:creator>
		<pubDate>Wed, 15 Jul 2009 00:46:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-88</guid>
		<description>Just a note for those reading this now - the user levels have been deprecated and the correct way to use the roles is by capabilities.

eg. if ( current_user_can(&#039;manage_options&#039;) ) { do_something(); } or, eg. (current_user_can(&#039;switch_themes&#039;))

List of capabilities is on the WordPress Codex here: http://codex.wordpress.org/Roles_and_Capabilities#Capabilities</description>
		<content:encoded><![CDATA[<p>Just a note for those reading this now &#8211; the user levels have been deprecated and the correct way to use the roles is by capabilities.</p>
<p>eg. if ( current_user_can(&#8216;manage_options&#8217;) ) { do_something(); } or, eg. (current_user_can(&#8216;switch_themes&#8217;))</p>
<p>List of capabilities is on the WordPress Codex here: <a href="http://codex.wordpress.org/Roles_and_Capabilities#Capabilities" rel="nofollow">http://codex.wordpress.org/Roles_and_Capabilities#Capabilities</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2009-07-02 &#124; BlueWave Media</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-87</link>
		<dc:creator>links for 2009-07-02 &#124; BlueWave Media</dc:creator>
		<pubDate>Thu, 02 Jul 2009 14:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-87</guid>
		<description>[...] Frontend Admin Menu in Wordpress &#124; Kriesi.at &#8211; new media design Here is a short tutorial on how to create an additional Wordpress menu that only shows up if a user is logged in. I use this technique to create admin front end interface menus for the most used tasks: writing and editing posts and pages, editing the current post , a direct link to the &quot;manage&quot; Section of the Wordpress admin Interface etc. (tags: kriesi wordpress admin tips coding) [...]</description>
		<content:encoded><![CDATA[<p>[...] Frontend Admin Menu in WordPress | Kriesi.at &#8211; new media design Here is a short tutorial on how to create an additional WordPress menu that only shows up if a user is logged in. I use this technique to create admin front end interface menus for the most used tasks: writing and editing posts and pages, editing the current post , a direct link to the &quot;manage&quot; Section of the WordPress admin Interface etc. (tags: kriesi wordpress admin tips coding) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaun Millalonco</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-86</link>
		<dc:creator>Jaun Millalonco</dc:creator>
		<pubDate>Wed, 01 Jul 2009 20:31:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-86</guid>
		<description>Just wanted to say great job with the blog, today is my first visit here and I&#039;ve enjoyed reading your posts so far :)
Juan</description>
		<content:encoded><![CDATA[<p>Just wanted to say great job with the blog, today is my first visit here and I&#8217;ve enjoyed reading your posts so far <img src='http://www.kriesi.at/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Juan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Added some menu functions &#124; davidedwardsphotos.com</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-85</link>
		<dc:creator>Added some menu functions &#124; davidedwardsphotos.com</dc:creator>
		<pubDate>Sat, 30 May 2009 04:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-85</guid>
		<description>[...] if some content is shown based on the role level of the current user. If found a blog post, Frontend Admin Menu in Wordpress, that showed an example of this. Thanks to the author for [...]</description>
		<content:encoded><![CDATA[<p>[...] if some content is shown based on the role level of the current user. If found a blog post, Frontend Admin Menu in WordPress, that showed an example of this. Thanks to the author for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aguas</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-84</link>
		<dc:creator>Aguas</dc:creator>
		<pubDate>Sun, 22 Mar 2009 01:54:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-84</guid>
		<description>Thanks, I was trying to find the solution looking in google in spanish, then in french, then I finally tried in english which is not (at all) my mother tongue, and found this wonderfull tip...
How was saying this sensei I&#039;ve forgot the name:
&quot;Less coding is better coding&quot; &lt;-- have to read it with Indian accent  to be precise...
Muchisimas gracias amigo !!</description>
		<content:encoded><![CDATA[<p>Thanks, I was trying to find the solution looking in google in spanish, then in french, then I finally tried in english which is not (at all) my mother tongue, and found this wonderfull tip&#8230;<br />
How was saying this sensei I&#8217;ve forgot the name:<br />
&#8220;Less coding is better coding&#8221; &lt;&#8211; have to read it with Indian accent  to be precise&#8230;<br />
Muchisimas gracias amigo !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Test Track</title>
		<link>http://www.kriesi.at/archives/frontend-admin-menu-in-wordpress/comment-page-1#comment-83</link>
		<dc:creator>Test Track</dc:creator>
		<pubDate>Thu, 19 Feb 2009 12:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.kriesi.at/?p=211#comment-83</guid>
		<description>&lt;strong&gt;Trackback TEST...&lt;/strong&gt;

TEST manuell
......</description>
		<content:encoded><![CDATA[<p><strong>Trackback TEST&#8230;</strong></p>
<p>TEST manuell<br />
&#8230;&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
