<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wp-Edge</title>
	<atom:link href="http://www.wp-edge.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wp-edge.com</link>
	<description>Wordpress Tutorials, Plugins &#38; Themes</description>
	<lastBuildDate>Mon, 25 Mar 2013 07:18:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How To: show only author posts in the wordpress admin post listing</title>
		<link>http://www.wp-edge.com/how-to-show-only-author-posts-in-the-wordpress-admin-post-listing/</link>
		<comments>http://www.wp-edge.com/how-to-show-only-author-posts-in-the-wordpress-admin-post-listing/#comments</comments>
		<pubDate>Mon, 25 Mar 2013 07:15:28 +0000</pubDate>
		<dc:creator>Ahmed Iqbal</dc:creator>
				<category><![CDATA[WP Hacks]]></category>
		<category><![CDATA[WP Tutorials]]></category>
		<category><![CDATA[Posts Listing]]></category>
		<category><![CDATA[Wordpress Admin]]></category>
		<category><![CDATA[Wordpress Author]]></category>

		<guid isPermaLink="false">http://www.wp-edge.com/?p=271</guid>
		<description><![CDATA[<p>If you have a multi-authors WordPress blog, by default WordPress allow contributors or authors to see all posts in the Admin Panel. However if you want to disable this privilege. Here is a code snippet .. Just copy and insert &#8230; <a href="http://www.wp-edge.com/how-to-show-only-author-posts-in-the-wordpress-admin-post-listing/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.wp-edge.com/how-to-show-only-author-posts-in-the-wordpress-admin-post-listing/">How To: show only author posts in the wordpress admin post listing</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-277" alt="images" src="http://www.wp-edge.com/wp-content/uploads/2013/03/images.jpg" width="277" height="182" /></p>
<p>If you have a multi-authors WordPress blog, by default WordPress allow contributors or authors to see all posts in the Admin Panel. However if you want to disable this privilege. Here is a code snippet ..<span id="more-271"></span></p>
<pre class="brush: php; title: ; notranslate">&lt;?php

function mypo_parse_query_useronly( $wp_query ) {
    if ( strpos( $_SERVER[ 'REQUEST_URI' ], '/wp-admin/edit.php' ) !== false ) {
        if ( !current_user_can( 'level_10' ) ) {
            global $current_user;
            $wp_query-&gt;set( 'author', $current_user-&gt;id );
        }
    }
}

add_filter('parse_query', 'mypo_parse_query_useronly' );

?&gt;</pre>
<p>Just copy and insert code snippet into your theme &#8220;<strong>functions.php</strong>&#8221; file. That&#8217;s it.</p>
<p>The post <a href="http://www.wp-edge.com/how-to-show-only-author-posts-in-the-wordpress-admin-post-listing/">How To: show only author posts in the wordpress admin post listing</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wp-edge.com/how-to-show-only-author-posts-in-the-wordpress-admin-post-listing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Remove WordPress Auto Generated Paragraphs Tags</title>
		<link>http://www.wp-edge.com/how-to-remove-wordpress-auto-generated-paragraphs-tags/</link>
		<comments>http://www.wp-edge.com/how-to-remove-wordpress-auto-generated-paragraphs-tags/#comments</comments>
		<pubDate>Sun, 03 Mar 2013 15:05:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WP Hacks]]></category>
		<category><![CDATA[WP Tutorials]]></category>
		<category><![CDATA[Wordpress Filters]]></category>
		<category><![CDATA[Wordpress Paragraph]]></category>
		<category><![CDATA[Wordpress Posts]]></category>
		<category><![CDATA[Wordpress Tags]]></category>

		<guid isPermaLink="false">http://www.wp-edge.com/?p=264</guid>
		<description><![CDATA[<p>Its true, WordPress automatically puts some paragraphs tags all over your posts. Of course it considered a useful feature. But sometimes it creates a lot of troubles for Programmers and Template Designers. So you can remove the paragraph tags by &#8230; <a href="http://www.wp-edge.com/how-to-remove-wordpress-auto-generated-paragraphs-tags/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.wp-edge.com/how-to-remove-wordpress-auto-generated-paragraphs-tags/">How To Remove WordPress Auto Generated Paragraphs Tags</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-265" alt="wp-paragraph-tags" src="http://www.wp-edge.com/wp-content/uploads/2013/03/wp-paragraph-tags-300x126.png" width="334" height="140" /></p>
<p>Its true, WordPress automatically puts some paragraphs tags all over your posts. Of course it considered a useful feature. But sometimes it creates a lot of troubles for Programmers and Template Designers. So you can remove the paragraph tags by using filter into the &#8220;<strong>functions.php</strong>&#8221; file of worpdress theme.<span id="more-264"></span></p>
<pre class="brush: php; title: ; notranslate">remove_filter ('the_content', 'wpautop');</pre>
<p>Once saved, WordPress no longer inserts paragraph tags into your post contents.</p>
<p>The post <a href="http://www.wp-edge.com/how-to-remove-wordpress-auto-generated-paragraphs-tags/">How To Remove WordPress Auto Generated Paragraphs Tags</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wp-edge.com/how-to-remove-wordpress-auto-generated-paragraphs-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Hide WordPress Login Errors From Potential Hackers</title>
		<link>http://www.wp-edge.com/how-to-hide-wordpress-login-errors-from-potential-hackers/</link>
		<comments>http://www.wp-edge.com/how-to-hide-wordpress-login-errors-from-potential-hackers/#comments</comments>
		<pubDate>Wed, 06 Feb 2013 15:27:45 +0000</pubDate>
		<dc:creator>Ahmed Iqbal</dc:creator>
				<category><![CDATA[WP Hacks]]></category>
		<category><![CDATA[WP Tutorials]]></category>
		<category><![CDATA[hide errors]]></category>
		<category><![CDATA[Login Error Messages]]></category>
		<category><![CDATA[Potential Hackers]]></category>
		<category><![CDATA[wp-admin]]></category>
		<category><![CDATA[wp-login]]></category>

		<guid isPermaLink="false">http://www.wp-edge.com/?p=256</guid>
		<description><![CDATA[<p>A lot of bloggers don’t care about WordPress blog security. For example, when someone attempt fail login on your &#8216;wp-login.php&#8217;. it&#8217;s displays an error message &#8220;ERROR: Invalid username or password&#8221;. That kind of information is very useful for the potential hackers. &#8230; <a href="http://www.wp-edge.com/how-to-hide-wordpress-login-errors-from-potential-hackers/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.wp-edge.com/how-to-hide-wordpress-login-errors-from-potential-hackers/">How To: Hide WordPress Login Errors From Potential Hackers</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-257" alt="Hide-Login-Error-Message" src="http://www.wp-edge.com/wp-content/uploads/2013/02/Hide-Login-Error-Message-300x126.png" width="300" height="126" /></p>
<p>A lot of bloggers don’t care about WordPress blog security. For example, when someone attempt fail login on your &#8216;wp-login.php&#8217;. it&#8217;s displays an error message &#8220;ERROR: Invalid username or password&#8221;. That kind of information is very useful for the potential hackers. This simple trick help you to hide those messages from others.<span id="more-256"></span></p>
<p>Please editit your Theme -&gt; &#8216;<strong>functions.php</strong>&#8216; file and paste the following code snippet.</p>
<pre class="brush: php; title: ; notranslate">add_filter('login_errors', create_function('$a', &quot;return null;&quot;));</pre>
<p>Once done, you will no longer receive error notifications.</p>
<p>The post <a href="http://www.wp-edge.com/how-to-hide-wordpress-login-errors-from-potential-hackers/">How To: Hide WordPress Login Errors From Potential Hackers</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wp-edge.com/how-to-hide-wordpress-login-errors-from-potential-hackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: display external files in your WordPress posts?</title>
		<link>http://www.wp-edge.com/how-to-display-external-files-in-your-wordpress-posts/</link>
		<comments>http://www.wp-edge.com/how-to-display-external-files-in-your-wordpress-posts/#comments</comments>
		<pubDate>Sat, 05 Jan 2013 14:38:05 +0000</pubDate>
		<dc:creator>Ahmed Iqbal</dc:creator>
				<category><![CDATA[WP Hacks]]></category>
		<category><![CDATA[WP Tutorials]]></category>
		<category><![CDATA[Wordpres External Files]]></category>
		<category><![CDATA[Wordpress Posts]]></category>
		<category><![CDATA[Wordpress Shortcodes]]></category>

		<guid isPermaLink="false">http://www.wp-edge.com/?p=243</guid>
		<description><![CDATA[<p>I learnt this trick a few days ago, its possible to embed  your images, text files into your wordpress blog posts. WordPress short code API is a easiest way to to add external files in your wordpress posts. First open &#8230; <a href="http://www.wp-edge.com/how-to-display-external-files-in-your-wordpress-posts/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.wp-edge.com/how-to-display-external-files-in-your-wordpress-posts/">How To: display external files in your WordPress posts?</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-246" alt="topic-wordpress" src="http://www.wp-edge.com/wp-content/uploads/2013/01/topic-wordpress.png" width="160" height="160" /></p>
<p>I learnt this trick a few days ago, its possible to embed  your images, text files into your wordpress blog posts. WordPress short code API is a easiest way to to add external files in your wordpress posts.<span id="more-243"></span></p>
<p>First open your theme &#8220;<strong>functions.php</strong>&#8221; and put the following code snippet:</p>
<pre class="brush: php; title: ; notranslate">
function show_file_func( $atts ) {
extract( shortcode_atts( array(
'file' =&amp;gt; ''
), $atts ) );

if ($file!='')
return @file_get_contents($file);
}
add_shortcode( 'show_file', 'show_file_func' );
</pre>
<p>After that, you can write somthing like that in your post:</p>
<pre class="brush: php; title: ; notranslate">
[show_file file=&quot;http://www.yourdomain.com/file.html&quot;]
</pre>
<p><em><br />
[Special thanks: <a href="http://www.prelovac.com/vladimir/wordpress-shortcode-snippet-to-display-external-files" target="_blank">Vladimir Prelovac</a>]</em></p>
<p>The post <a href="http://www.wp-edge.com/how-to-display-external-files-in-your-wordpress-posts/">How To: display external files in your WordPress posts?</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wp-edge.com/how-to-display-external-files-in-your-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Replace WordPress Images Smileys With Font-Based Emoticons</title>
		<link>http://www.wp-edge.com/how-to-replace-wordpress-images-smileys-with-font-based-emoticons/</link>
		<comments>http://www.wp-edge.com/how-to-replace-wordpress-images-smileys-with-font-based-emoticons/#comments</comments>
		<pubDate>Thu, 27 Dec 2012 15:19:54 +0000</pubDate>
		<dc:creator>Ahmed Iqbal</dc:creator>
				<category><![CDATA[WP Plugins]]></category>
		<category><![CDATA[Emoticons Plugins]]></category>
		<category><![CDATA[Font Emotions]]></category>
		<category><![CDATA[Wordpress Emoticons]]></category>
		<category><![CDATA[WordPress Images Smileys]]></category>

		<guid isPermaLink="false">http://www.wp-edge.com/?p=231</guid>
		<description><![CDATA[<p>An Emoticons are mostly used in mail &#38; forms of conversation such as commenting and chatting. Indeed, most popular Emoticons are smiling and sorrow faces to show your expressions and feelings. No doubt, Emoticons are also used in blogging specifically WordPress, &#8230; <a href="http://www.wp-edge.com/how-to-replace-wordpress-images-smileys-with-font-based-emoticons/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.wp-edge.com/how-to-replace-wordpress-images-smileys-with-font-based-emoticons/">How To: Replace WordPress Images Smileys With Font-Based Emoticons</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-235" alt="A student holds a placard during a protest in front of the Greece embassy in Buenos Aires" src="http://www.wp-edge.com/wp-content/uploads/2012/12/wink1_wideweb__470x3130-300x199.jpg" width="300" height="199" /></p>
<p>An Emoticons are mostly used in mail &amp; forms of conversation such as commenting and chatting. Indeed, most popular Emoticons are smiling and sorrow faces to show your expressions and feelings. No doubt, Emoticons are also used in blogging specifically WordPress, Drupal, Joomla etc. WordPress default emoticons packed up with images formats. Unfortunately, i am not much interested to use them .<span id="more-231"></span><br />
Wait a second, one the most handy plugin is available on wordpress plugin repository, <a href="http://wordpress.org/extend/plugins/font-emoticons/" target="_blank">Font Emotions</a> plugin help us to replace all smileys images with font emoticons. Don&#8217;t worry, the plugin  emoticons will have the same size as the surrounding text, They also ways fit the font-size. your emotions have the same colour as surrounding text.</p>
<p><img class="alignnone size-large wp-image-234" alt="font-emoticons" src="http://www.wp-edge.com/wp-content/uploads/2012/12/font-emoticons-1024x286.png" width="620" height="173" /></p>
<p>Please check available font based smileys included in the plugin are shown bellow:</p>
<p><img class="alignnone size-full wp-image-232" alt="available-emoticons" src="http://www.wp-edge.com/wp-content/uploads/2012/12/available-emoticons.png" width="502" height="238" /></p>
<p>The plugin is not required any complicated setting to figure it out. Simplely, download font emoticons from worpdress repository and enjoy it.</p>
<p><strong>Soruce:</strong> <a href="http://wordpress.org/extend/plugins/font-emoticons/" target="_blank"><em>Font Emoticons on WordPress</em></a></p>
<p>The post <a href="http://www.wp-edge.com/how-to-replace-wordpress-images-smileys-with-font-based-emoticons/">How To: Replace WordPress Images Smileys With Font-Based Emoticons</a> appeared first on <a href="http://www.wp-edge.com">Wp-Edge</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wp-edge.com/how-to-replace-wordpress-images-smileys-with-font-based-emoticons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.wp-edge.com/feed/ ) in 0.41857 seconds, on May 20th, 2013 at 8:49 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 20th, 2013 at 9:49 pm UTC -->