<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Pippin's Pages</title>
	
	<link>http://pippinspages.com</link>
	<description>{ Coding everyday keeps the bugs away }</description>
	<lastBuildDate>Wed, 08 Sep 2010 21:25:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/pippinspages/XXtm" /><feedburner:info uri="pippinspages/xxtm" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Check if Current Page is in Tree</title>
		<link>http://pippinspages.com/tutorials/check-if-current-page-is-in-tree/</link>
		<comments>http://pippinspages.com/tutorials/check-if-current-page-is-in-tree/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 21:25:45 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wp tricks]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1609</guid>
		<description><![CDATA[This is a really useful little snippet I found in the WordPress Codex. It allows us to check whether a page is within a specified tree, e.g. whether a page is a certain ID or if it is a subpage of that ID. Here&#8217;s the function: 1 2 3 4 5 6 7 8 9 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Ftutorials%2Fcheck-if-current-page-is-in-tree%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Ftutorials%2Fcheck-if-current-page-is-in-tree%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=tutorial,Wordpress,wp+tricks" height="61" width="50" /><br />
			</a>
		</div>
<p>This is a really useful little snippet I found in the WordPress Codex. It allows us to check whether a page is within a specified tree, e.g. whether a page is a certain ID or if it is a subpage of that ID.</p>
<p>Here&#8217;s the function:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> is_tree<span style="color: #009900;">&#40;</span><span style="color: #000088;">$pid</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>         <span style="color: #666666; font-style: italic;">// load details about this page</span>
	<span style="color: #000088;">$anc</span> <span style="color: #339933;">=</span> get_post_ancestors<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$anc</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$ancestor</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #000088;">$ancestor</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$pid</span><span style="color: #009900;">&#41;</span> 
		<span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;&amp;</span><span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #000088;">$pid</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> 
               <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>   <span style="color: #666666; font-style: italic;">// we're at the page or at a sub page</span>
	<span style="color: #b1b100;">else</span> 
               <span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;">// we're elsewhere</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Then we can perform the check from within the WordPress loop like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_tree<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'4'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #666666; font-style: italic;">// run this code</span>
	<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>The above snippet will check if the current page has an ID of <strong>4</strong> of if the parent of the current page has an ID of <strong>4</strong>. If the check comes back <em>true</em>, the code within the brackets will be run.</p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/tutorials/wordpress-cms-tips-and-tricks-part-3/">Wordpress CMS Tips and Tricks - Part 3</a> <span class="related-post-date timestamp">Wed 19 May 2010</span></li><li class="related-post"><a href="http://pippinspages.com/tutorials/minimum-word-count-for-wordpress-posts/">Minimum Word Count for WordPress Posts</a> <span class="related-post-date timestamp">Thu 26 Aug 2010</span></li><li class="related-post"><a href="http://pippinspages.com/tutorials/stellar-wordpress-portfolio-control-with-custom-post-meta-types/">Stellar Wordpress Portfolio Control with Custom Post / Meta Types</a> <span class="related-post-date timestamp">Mon 21 Jun 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/tutorials/check-if-current-page-is-in-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Utility Short Codes Plugin – Free</title>
		<link>http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/</link>
		<comments>http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 00:20:07 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[short codes]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wp plugin]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1580</guid>
		<description><![CDATA[This plugin lets you very easily insert utility boxes and buttons, which can be used for any number of things, such as drawing your visitors to important information. For example, download links. View Live Demo Download Related PostsPremium WordPress Announcements Plugin Sat 17 Jul 2010WordPress Font Uploader v1.1 - New Features Tue 13 Jul 2010Check [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Ffreebies%2Fwp-utility-short-codes-plugin-free%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Ffreebies%2Fwp-utility-short-codes-plugin-free%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=short+codes,Wordpress,wordpress+plugin,wp+plugin" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/08/wpus-banner.png"><img src="http://pippinspages.com/wp-content/uploads/2010/08/wpus-banner-658x138.png" alt="" title="wpus-banner" width="658" height="138" class="alignnone size-large wp-image-1597" /></a>This plugin lets you very easily insert utility boxes and buttons, which can be used for any number of things, such as drawing your visitors to important information. For example, download links.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="i=99302" /><param name="allowFullScreen" value="true" /><param name="src" value="http://screenr.com/Content/assets/screenr_1116090935.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="345" src="http://screenr.com/Content/assets/screenr_1116090935.swf" allowfullscreen="true" flashvars="i=99302"></embed></object></p>
<h3><a class="downloadlink" href="http://demo.pippinspages.com/wp-utility-shortcodes/">View Live Demo</a></h3>
<h3>Download</h3>
<a class="downloadlink" href="http://pippinspages.com/wp-content/plugins/download-monitor/download.php?id=7" title=" downloaded 29 times" >WP Utility Short Codes Plugin (29)</a>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/wordpress/premium-wordpress-announcements-plugin/">Premium WordPress Announcements Plugin</a> <span class="related-post-date timestamp">Sat 17 Jul 2010</span></li><li class="related-post"><a href="http://pippinspages.com/wordpress/wordpress-font-uploader-v1-1-new-features/">WordPress Font Uploader v1.1 - New Features</a> <span class="related-post-date timestamp">Tue 13 Jul 2010</span></li><li class="related-post"><a href="http://pippinspages.com/tutorials/check-if-current-page-is-in-tree/">Check if Current Page is in Tree</a> <span class="related-post-date timestamp">Wed 08 Sep 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Minimum Word Count for WordPress Posts</title>
		<link>http://pippinspages.com/tutorials/minimum-word-count-for-wordpress-posts/</link>
		<comments>http://pippinspages.com/tutorials/minimum-word-count-for-wordpress-posts/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 02:09:11 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[wp tricks]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1575</guid>
		<description><![CDATA[If you wish to set a minimum word count for your posts (this can be useful for a variety of things, including maintaining a clean layout), simply add the following snippet to your functions.php file and set the number to whatever you wish. 1 2 3 4 5 6 7 8 function minWord&#40;$content&#41; &#123; global [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Ftutorials%2Fminimum-word-count-for-wordpress-posts%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Ftutorials%2Fminimum-word-count-for-wordpress-posts%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=functions,Wordpress,wp+tricks" height="61" width="50" /><br />
			</a>
		</div>
<p>If you wish to set a minimum word count for your posts (this can be useful for a variety of things, including maintaining a clean layout), simply add the following snippet to your <strong>functions.php</strong> file and set the number to whatever you wish.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> minWord<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_content</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">str_word_count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">100</span> <span style="color: #009900;">&#41;</span> <span style="color: #666666; font-style: italic;">//set this to the minimum number of words</span>
	wp_die<span style="color: #009900;">&#40;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Error: your post is below the minimum word count.'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'publish_post'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'minWord'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>If an author tries to publish a post with fewer than the minimum, WordPress will kick out an error.</p>
<p>Nice and simple.</p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/tutorials/check-if-current-page-is-in-tree/">Check if Current Page is in Tree</a> <span class="related-post-date timestamp">Wed 08 Sep 2010</span></li><li class="related-post"><a href="http://pippinspages.com/tutorials/wordpress-cms-tips-and-tricks-part-3/">Wordpress CMS Tips and Tricks - Part 3</a> <span class="related-post-date timestamp">Wed 19 May 2010</span></li><li class="related-post"><a href="http://pippinspages.com/tutorials/wordpress-cms-tips-part-2/">Wordpress CMS Tips - Part 2</a> <span class="related-post-date timestamp">Tue 06 Apr 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/tutorials/minimum-word-count-for-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Utility Icons – Free</title>
		<link>http://pippinspages.com/freebies/simple-utility-icons-free/</link>
		<comments>http://pippinspages.com/freebies/simple-utility-icons-free/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 20:30:33 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[free]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1571</guid>
		<description><![CDATA[These are a simple set of 6 20&#215;20 icons I came up with the other day while working on a new WP plugin, and thought I&#8217;d give them out to everyone for free. You are free to use them anywhere you like, including commercial projects, as long as you give credit to me. Related PostsFreebie [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Ffreebies%2Fsimple-utility-icons-free%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Ffreebies%2Fsimple-utility-icons-free%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=free,icons" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://pippinspages.com/wp-content/uploads/2010/08/utility-icons.png"><img src="http://pippinspages.com/wp-content/uploads/2010/08/utility-icons.png" alt="" title="utility-icons" width="560" height="80" class="alignnone size-full wp-image-1572" /></a></p>
<p>These are a simple set of 6 20&#215;20 icons I came up with the other day while working on a new WP plugin, and thought I&#8217;d give them out to everyone for free.</p>
<p>You are free to use them anywhere you like, including commercial projects, as long as you give credit to me.<br />
<a class="downloadlink" href="http://pippinspages.com/wp-content/plugins/download-monitor/download.php?id=6" title=" downloaded 14 times" >Utility Icons (14)</a></p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/css/freebie-css-3-drop-down-menus/">Freebie - CSS 3 Drop Down Menus</a> <span class="related-post-date timestamp">Tue 22 Jun 2010</span></li><li class="related-post"><a href="http://pippinspages.com/freebies/sugar-glider-free-wordpress-theme/">Sugar Glider - Free Wordpress Theme</a> <span class="related-post-date timestamp">Wed 09 Jun 2010</span></li><li class="related-post"><a href="http://pippinspages.com/freebies/building-blocks-free/">Building Blocks - Free</a> <span class="related-post-date timestamp">Mon 01 Mar 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/freebies/simple-utility-icons-free/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple Share – Easy Social Sharing</title>
		<link>http://pippinspages.com/wordpress/simple-share-easy-social-sharing/</link>
		<comments>http://pippinspages.com/wordpress/simple-share-easy-social-sharing/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 15:50:18 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[simple share]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1564</guid>
		<description><![CDATA[Simple Social Network Sharing for WordPress Simple Sharing is an easy to use social network sharing plugin that adds a “share” box to each of your individual posts, allowing your readers to easily share your post over many of the most popular social sharing networks. But What’s Different from Others Unlike many social network sharing [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Fsimple-share-easy-social-sharing%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Fsimple-share-easy-social-sharing%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=simple+share,social+networking,wordpress+plugin" height="61" width="50" /><br />
			</a>
		</div>
<p><img alt="Simple Share WordPress plugin" src="http://s3.envato.com/files/1069914/simple-share-screenshots/screenshot.png" title="Simple Share" class="alignnone" width="590" height="300" /></p>
<h3>Simple Social Network Sharing for WordPress</h3>
<p>Simple Sharing is an easy to use social network sharing plugin that adds a “share” box to each of your individual posts, allowing your readers to easily share your post over many of the most popular social sharing networks.</p>
<h3>But What’s Different from Others</h3>
<p>Unlike many social network sharing plugins, Simple Share floats just to the left of your content and scrolls with the page as readers scroll, keeping it always in view.</p>
<h3>Why does this matter?</h3>
<p>Readers have a tendency to quit reading before they get to the bottom of the post, where most social network sharing links are. Simple Share is always in view, enticing readers to share your article from the first word on.</p>
<h3>Features</h3>
<ul>
<li>8 integrated sharing protocols</li>
<li>Easy to use admin interface</li>
<li>Complete positioning control</li>
<li>Styling control</li>
<li>Ability to choose which protocols to display</li>
<li>jQuery enhanced fancy tool tips</li>
</ul>
<p>Icons by <a href="http://icondock.com">Icon Dock</a>.</p>
<p><a href="http://codecanyon.net/item/simple-share/117355" class="downloadlink">Download on Code Canyon</a></p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/">WP Utility Short Codes Plugin - Free</a> <span class="related-post-date timestamp">Sun 29 Aug 2010</span></li><li class="related-post"><a href="http://pippinspages.com/freebies/restricted-content-plugin-free/">Restricted Content Plugin - Free</a> <span class="related-post-date timestamp">Thu 22 Jul 2010</span></li><li class="related-post"><a href="http://pippinspages.com/wordpress/premium-wordpress-announcements-plugin/">Premium WordPress Announcements Plugin</a> <span class="related-post-date timestamp">Sat 17 Jul 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/wordpress/simple-share-easy-social-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Full IE Support in WordPress Font Uploader v1.2</title>
		<link>http://pippinspages.com/wordpress/full-ie-support-in-wordpress-font-uploader-v1-2/</link>
		<comments>http://pippinspages.com/wordpress/full-ie-support-in-wordpress-font-uploader-v1-2/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 21:19:34 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[font replacement]]></category>
		<category><![CDATA[font upload]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[ie fonts]]></category>
		<category><![CDATA[internet explorer fonts]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1538</guid>
		<description><![CDATA[I&#8217;m pleased to announce that my premium WordPress Font Uploader plugin now has full support for fonts in Internet Explorer. 100% Cross Browser Compatible Fonts This means that you can now display any font anywhere you like on your website, while being assured that it will work no matter what browser your site visitor is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Ffull-ie-support-in-wordpress-font-uploader-v1-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Ffull-ie-support-in-wordpress-font-uploader-v1-2%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=font+replacement,font+upload,fonts,ie+fonts,internet+explorer+fonts,plugin,Wordpress" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://pippinspages.com/wp-content/uploads/2010/07/font-uploader-v1.2.png" alt="Font Uploader v1.2" title="font-uploader-v1.2" width="656" height="200" class="alignnone size-full wp-image-1540" /></p>
<p>I&#8217;m pleased to announce that my premium<a href="http://codecanyon.net/author_dashboard"> WordPress Font Uploader</a> plugin now has full support for fonts in Internet Explorer.</p>
<h3>100% Cross Browser Compatible Fonts</h3>
<p>This means that you can now display <em>any</em> font anywhere you like on your website, while being assured that it will work no matter what browser your site visitor is using.</p>
<p>Check out the screencast below for a demonstration of this new feature.</p>
<p><object width="656" height="541"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=13650776&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=1&amp;color=29649e&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=13650776&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=1&amp;color=29649e&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="656" height="541"></embed></object></p>
<h3>Convert your fonts</h3>
<p>To convert your fonts to a .eot, readable by Internet Explorer, use the link below:<br />
<a href="http://ttf2eot.sebastiankippe.com/">Sebastian Kippe&#8217;s .ttf -> .eot converter</a></p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/tutorials/wordpress-plugin-toolbox/">WordPress Plugin Toolbox</a> <span class="related-post-date timestamp">Thu 08 Jul 2010</span></li><li class="related-post"><a href="http://pippinspages.com/tutorials/check-if-current-page-is-in-tree/">Check if Current Page is in Tree</a> <span class="related-post-date timestamp">Wed 08 Sep 2010</span></li><li class="related-post"><a href="http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/">WP Utility Short Codes Plugin - Free</a> <span class="related-post-date timestamp">Sun 29 Aug 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/wordpress/full-ie-support-in-wordpress-font-uploader-v1-2/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Restricted Content Plugin – Free</title>
		<link>http://pippinspages.com/freebies/restricted-content-plugin-free/</link>
		<comments>http://pippinspages.com/freebies/restricted-content-plugin-free/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 06:04:28 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[restricted content]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1524</guid>
		<description><![CDATA[This plugin will very easily let you restrict content on your WordPress site to registered users. It permits you to restrict entire posts / pages or individual sections of content within a post or page. Screencast Demo Features Restrict entire posts / pages. Restrict sections of content. Unlimited number of restricted areas. Four restriction levels [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Ffreebies%2Frestricted-content-plugin-free%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Ffreebies%2Frestricted-content-plugin-free%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=restricted+content,wordpress+plugin" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://pippinspages.com/wp-content/uploads/2010/07/restricted_content_plugin-large.jpg" alt="Restrict content to registered users" title="restricted_content_plugin-large" width="658" height="200" class="alignnone size-full wp-image-1525" /></p>
<p>This plugin will very easily let you restrict content on your WordPress site to registered users. It permits you to restrict entire posts / pages or individual sections of content within a post or page.</p>
<h3>Screencast Demo</h3>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_1116090935.swf' ></param><param name='flashvars' value='i=89949' ></param><param name='allowFullScreen' value='true' ></param><embed src='http://screenr.com/Content/assets/screenr_1116090935.swf' flashvars='i=89949' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer' ></embed></object></p>
<h3>Features</h3>
<ul>
<li>Restrict entire posts / pages.</li>
<li>Restrict sections of content.</li>
<li>Unlimited number of restricted areas.</li>
<li>Four restriction levels &#8211; uses WordPress&#8217;s regular user levels.</li>
<li>Hide content displayed in WordPress feeds.</li>
</ul>
<h3>Usage</h3>
<p>First upload to wp-content/plugins and click <em>activate</em> from the WordPress plugins menu.</p>
<p>To restrict an entire post or page, simply select the user level you&#8217;d like to restrict the post or page to from the drop down menu added just below the post/page editor.</p>
<p>To restrict just a section of content within a post or page, you may use shortcodes like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">[restrict userlevel=&quot;editor&quot;] . . . your restricted content goes here . . . [/restrict]</pre></div></div>

<p>Accepted <em>userlevel</em> values are:</p>
<ul>
<li>admin</li>
<li>editor</li>
<li>author</li>
<li>subscriber</li>
</ul>
<p>A premium version of this plugin is coming soon with many more awesome features.</p>
<h3>Changelog</h3>
<p><em>Updated July 23, 2010</em></p>
<p>Version 1.1 fixes a problem where all posts would be set to &#8220;restricted&#8221; even without a restriction level set. This problem was caused the value of &#8220;none&#8221; not automatically being inserted into the database. I have changed the way that the plugin perceives whether a restriction level is set, eliminating this problem entirely.</p>
<h3>Download for Free</h3>
<p>Hit the download link be low and leave a comment at the bottom.</p>
<a class="downloadlink" href="http://pippinspages.com/wp-content/plugins/download-monitor/download.php?id=5" title="Version1.1 downloaded 104 times" >Restricted Content Plugin (104)</a>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/">WP Utility Short Codes Plugin - Free</a> <span class="related-post-date timestamp">Sun 29 Aug 2010</span></li><li class="related-post"><a href="http://pippinspages.com/wordpress/simple-share-easy-social-sharing/">Simple Share - Easy Social Sharing</a> <span class="related-post-date timestamp">Tue 10 Aug 2010</span></li><li class="related-post"><a href="http://pippinspages.com/wordpress/premium-wordpress-announcements-plugin/">Premium WordPress Announcements Plugin</a> <span class="related-post-date timestamp">Sat 17 Jul 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/freebies/restricted-content-plugin-free/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Premium WordPress Announcements Plugin</title>
		<link>http://pippinspages.com/wordpress/premium-wordpress-announcements-plugin/</link>
		<comments>http://pippinspages.com/wordpress/premium-wordpress-announcements-plugin/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 13:57:21 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[announcements]]></category>
		<category><![CDATA[code canyon]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1520</guid>
		<description><![CDATA[Easily create Announcements to send out through your WordPress website. This plugin will make it extremely easy to create announcements pertaining to meeting times, bug fixes, feature updates, event planning, and anything else! Features Manage Announcements with the WordPress post editor Categorize Announcements Recent Announcements Widget Announcement Categories Widget WordPress shortcodes for easy Announcement listing [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Fpremium-wordpress-announcements-plugin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Fpremium-wordpress-announcements-plugin%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=announcements,code+canyon,Wordpress,wordpress+plugin,wp" height="61" width="50" /><br />
			</a>
		</div>
<p><object width="656" height="443"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=13291368&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=1&amp;color=29649e&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=13291368&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=1&amp;color=29649e&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="656" height="443"></embed></object></p>
<h3>Easily create Announcements to send out through your WordPress website.</h3>
<p>This plugin will make it extremely easy to create announcements pertaining to meeting times, bug fixes, feature updates, event planning, and anything else!</p>
<h3>Features</h3>
<ul>
<li>Manage Announcements with the WordPress post editor</li>
<li>Categorize Announcements</li>
<li>Recent Announcements Widget</li>
<li>Announcement Categories Widget</li>
<li>WordPress shortcodes for easy Announcement listing on any page</li>
<li>Multiple display options</li>
<li>&#8220;Additional Details&#8221; display</li>
<li>Works natively with any WordPress theme</li>
<li>Easy to customize to fit your theme just right</li>
<li>Detailed screencast and documentation</li>
</ul>
<p>If you&#8217;ve been looking for an easy way to manage your announcements, this is it.</p>
<p>Once you&#8217;ve tried it, you will hardly believe how easy it is to make announcements about your software&#8217;s new features, or your new theme file available for purchase, or your new meeting times, or just about anything else you can think of.</p>
<h3><a href="http://demo.pippinspages.com/announcements/announcements/">Check out a live demo</a></h3>
<p><a href="http://codecanyon.net/item/premium-wordpress-announcements-plugin/113296" class="downloadlink">Download from Code Canyon.net</a></p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/">WP Utility Short Codes Plugin - Free</a> <span class="related-post-date timestamp">Sun 29 Aug 2010</span></li><li class="related-post"><a href="http://pippinspages.com/wordpress/wordpress-font-uploader-v1-1-new-features/">WordPress Font Uploader v1.1 - New Features</a> <span class="related-post-date timestamp">Tue 13 Jul 2010</span></li><li class="related-post"><a href="http://pippinspages.com/tutorials/check-if-current-page-is-in-tree/">Check if Current Page is in Tree</a> <span class="related-post-date timestamp">Wed 08 Sep 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/wordpress/premium-wordpress-announcements-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Font Uploader v1.1 – New Features</title>
		<link>http://pippinspages.com/wordpress/wordpress-font-uploader-v1-1-new-features/</link>
		<comments>http://pippinspages.com/wordpress/wordpress-font-uploader-v1-1-new-features/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 00:34:13 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[code canyon]]></category>
		<category><![CDATA[font uploader]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wp plugin]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1513</guid>
		<description><![CDATA[The new version of my premium WordPress Font Uploader plugin will be available anytime over at Code Canyon.net. This new version includes some really cool updates. Feature Updates Full support for Google Fonts, available from http://code.google.com/webfonts Lots of efficiency updates. The new version outputs much less unnecessary code. The Google Font capability provides full 100% [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Fwordpress-font-uploader-v1-1-new-features%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Fwordpress-font-uploader-v1-1-new-features%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=code+canyon,font+uploader,wordpress+plugin,wp+plugin" height="61" width="50" /><br />
			</a>
		</div>
<p>The new version of my premium WordPress Font Uploader plugin will be available anytime over at <a href="http://codecanyon.net/item/font-uploader/110175">Code Canyon.net</a>.</p>
<p>This new version includes some really cool updates.</p>
<h3>Feature Updates</h3>
<ul>
<li>Full support for Google Fonts, available from http://code.google.com/webfonts</li>
<li>Lots of efficiency updates. The new version outputs much less unnecessary code.</li>
</ul>
<p>The Google Font capability provides full 100% cross browser support, including Internet Explorer. With this update, you will be able to display your custom fonts to ALL users.</p>
<p>Check out the screencast below for a demo of this update.</p>
<p><object width="656" height="500"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=13315639&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=1&amp;color=29649e&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=13315639&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=1&amp;color=29649e&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="656" height="500"></embed></object></p>
<p><a href="http://codecanyon.net/item/font-uploader/110175" class="downloadlink">Download from Code Canyon</a></p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/">WP Utility Short Codes Plugin - Free</a> <span class="related-post-date timestamp">Sun 29 Aug 2010</span></li><li class="related-post"><a href="http://pippinspages.com/wordpress/premium-wordpress-announcements-plugin/">Premium WordPress Announcements Plugin</a> <span class="related-post-date timestamp">Sat 17 Jul 2010</span></li><li class="related-post"><a href="http://pippinspages.com/wordpress/wordpress-font-uploader-plugin/">Wordpress Font Uploader Plugin</a> <span class="related-post-date timestamp">Wed 23 Jun 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/wordpress/wordpress-font-uploader-v1-1-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sliding Contact Form for WordPress</title>
		<link>http://pippinspages.com/wordpress/sliding-contact-form-for-wordpress/</link>
		<comments>http://pippinspages.com/wordpress/sliding-contact-form-for-wordpress/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 06:17:59 +0000</pubDate>
		<dc:creator>Pippin Williamson</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[contact form]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[sliding]]></category>

		<guid isPermaLink="false">http://pippinspages.com/?p=1470</guid>
		<description><![CDATA[This is an elegant solution that puts a “sliding contact panel” on your WordPress site. It will put a small “Contact” tab in the top left corner that expands to show a contact form and social media links when clicked. Features jQuery powered sliding contact panel jQuery email validation 15 Social network icons integrated 5 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin: 0 0 10px 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Fsliding-contact-form-for-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fpippinspages.com%2Fwordpress%2Fsliding-contact-form-for-wordpress%2F&amp;source=pippinspages&amp;style=normal&amp;hashtags=contact+form,jquery,sliding,Wordpress" height="61" width="50" /><br />
			</a>
		</div>
<p><img src="http://pippinspages.com/wp-content/uploads/2010/07/Screenshot-1-e1278608705268.png" alt="" title="Sliding Contact Form" width="658" height="317" class="alignnone size-full wp-image-1472" /></p>
<p>This is an elegant solution that puts a “sliding contact panel” on your WordPress site.<br />
It will put a small “Contact” tab in the top left corner that expands to show a contact form and social media links when clicked.</p>
<h3>Features</h3>
<ul>
<li>jQuery powered sliding contact panel</li>
<li>jQuery email validation</li>
<li>15 Social network icons integrated</li>
<li>5 color schemes</li>
<li>CSS 3 for lightning quick loading—no images harmed in production</li>
<li>Graceful degradation for non-CSS3 browsers</li>
<li>Easy to use admin panel</li>
<li>Custom logo capability</li>
</ul>
<h3>Version 1.1 Updates</h3>
<p>Fixed some small css bugs that caused conflicts with some theme&#8217;s clearfix classes.</p>
<p><a href="http://demo.pippinspages.com/sliding-contact-form/" class="downloadlink">View Demo</a></p>
<p><a href="http://codecanyon.net/item/sliding-contact-form-for-wordpress/112540" class="downloadlink">Download from CodeCanyon</a></p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://pippinspages.com/tutorials/pikachoose-gallery-wordpress-integration/">Pikachoose + Wordpress</a> <span class="related-post-date timestamp">Wed 10 Feb 2010</span></li><li class="related-post"><a href="http://pippinspages.com/tutorials/check-if-current-page-is-in-tree/">Check if Current Page is in Tree</a> <span class="related-post-date timestamp">Wed 08 Sep 2010</span></li><li class="related-post"><a href="http://pippinspages.com/freebies/wp-utility-short-codes-plugin-free/">WP Utility Short Codes Plugin - Free</a> <span class="related-post-date timestamp">Sun 29 Aug 2010</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://pippinspages.com/wordpress/sliding-contact-form-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching 153/156 queries in 0.040 seconds using disk
Object Caching 2175/2208 objects using disk

Served from: www.pippinspages.com @ 2010-09-08 21:26:00 -->
