<?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>Icode4you - PHP, CSS, HTML, and Javascript coding tips, tricks, help, and more</title>
	<atom:link href="http://icode4you.net/feed" rel="self" type="application/rss+xml" />
	<link>http://icode4you.net</link>
	<description>coding tips, tricks, help, and more!</description>
	<lastBuildDate>Fri, 04 May 2012 19:07:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Concrete5: How to display a page&#8217;s unique ID</title>
		<link>http://icode4you.net/concrete5-how-to-display-a-pages-unique-id</link>
		<comments>http://icode4you.net/concrete5-how-to-display-a-pages-unique-id#comments</comments>
		<pubDate>Fri, 04 May 2012 19:07:06 +0000</pubDate>
		<dc:creator>Libby Fisher</dc:creator>
				<category><![CDATA[Concrete5]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[concrete5]]></category>
		<category><![CDATA[id]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[unique]]></category>

		<guid isPermaLink="false">http://icode4you.net/?p=2575</guid>
		<description><![CDATA[Here is the line of code I use to display a page&#8217;s unique ID. &#60;?php echo $c-&#62;getCollectionID() ?&#62; This is really useful for styling individual pages.]]></description>
		<wfw:commentRss>http://icode4you.net/concrete5-how-to-display-a-pages-unique-id/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Tricks: How to fix the issue of YouTube videos appearing on top of other content</title>
		<link>http://icode4you.net/wordpress-tricks-how-to-fix-the-issue-of-youtube-videos-appearing-on-top-of-other-content</link>
		<comments>http://icode4you.net/wordpress-tricks-how-to-fix-the-issue-of-youtube-videos-appearing-on-top-of-other-content#comments</comments>
		<pubDate>Tue, 01 May 2012 17:25:21 +0000</pubDate>
		<dc:creator>Libby Fisher</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[overlap]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[youtube]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://icode4you.net/?p=2571</guid>
		<description><![CDATA[Here is the code I use to make sure the embedded YouTube videos on a website don&#8217;t appear on top of other content (for example: drop down menus): &#60;object width='400' height='350'&#62;      &#60;param name='movie' value='http://www.youtube.com/YOURVIDEOLINK'&#62;      &#60;param name='type' value='application/x-shockwave-flash'&#62;      &#60;param name='allowfullscreen' value='true'&#62;      &#60;param name='allowscriptaccess' value='always'&#62;      &#60;param name="wmode" value="opaque" /&#62;     &#60;embed width='400' [...]]]></description>
		<wfw:commentRss>http://icode4you.net/wordpress-tricks-how-to-fix-the-issue-of-youtube-videos-appearing-on-top-of-other-content/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Including retweets in your custom Twitter feeds</title>
		<link>http://icode4you.net/including-retweets-in-your-custom-twitter-feeds</link>
		<comments>http://icode4you.net/including-retweets-in-your-custom-twitter-feeds#comments</comments>
		<pubDate>Tue, 01 May 2012 01:00:01 +0000</pubDate>
		<dc:creator>Libby Fisher</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[retweets]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[username]]></category>

		<guid isPermaLink="false">http://icode4you.net/?p=2568</guid>
		<description><![CDATA[Here are the codes I use to create a custom Twitter feed for my websites which includes retweets. First you will want to insert the Javascript that makes the whole thing work. Copy and paste this line of code into your website, preferably just before the closing &#60;body&#62; tag: &#60;script src="http://twitter.com/javascripts/blogger.js" type="text/javascript"&#62;&#60;/script&#62; &#60;script src="http://api.twitter.com/1/statuses/user_timeline.json?screen_name=thelibzter&#38;include_rts=1&#38;callback=twitterCallback2&#38;count=6" type="text/javascript"&#62;&#60;/script&#62; [...]]]></description>
		<wfw:commentRss>http://icode4you.net/including-retweets-in-your-custom-twitter-feeds/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML: Add a drop down list of states with links to their respective pages</title>
		<link>http://icode4you.net/html-add-a-drop-down-list-of-states-with-links-to-their-respective-pages</link>
		<comments>http://icode4you.net/html-add-a-drop-down-list-of-states-with-links-to-their-respective-pages#comments</comments>
		<pubDate>Fri, 27 Apr 2012 16:23:55 +0000</pubDate>
		<dc:creator>Libby Fisher</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[drop]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[states]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://icode4you.net/?p=2565</guid>
		<description><![CDATA[Here is how to add a drop down list of states with links to each of their respective pages to your web page. First, add this script to the &#60;head&#62; section of your website: &#60;SCRIPT LANGUAGE="JavaScript"&#62;&#60;!-- function goto_URL(object) { window.location.href = object.options[object.selectedIndex].value; } //--&#62;&#60;/SCRIPT&#62; Then build your list of states like this: &#60;FORM&#62; &#60;SELECT NAME="selectName" [...]]]></description>
		<wfw:commentRss>http://icode4you.net/html-add-a-drop-down-list-of-states-with-links-to-their-respective-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Concrete5: Display the page title of the top parent menu item on sub pages</title>
		<link>http://icode4you.net/display-page-title-top-parent-menu-item-sub-pages</link>
		<comments>http://icode4you.net/display-page-title-top-parent-menu-item-sub-pages#comments</comments>
		<pubDate>Fri, 20 Apr 2012 22:11:09 +0000</pubDate>
		<dc:creator>Libby Fisher</dc:creator>
				<category><![CDATA[Concrete5]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[concrete5]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[item]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[parent]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[top]]></category>

		<guid isPermaLink="false">http://icode4you.net/?p=2556</guid>
		<description><![CDATA[Here is the block of code I use to display the page title of the top parent menu item on a sub (or child) page of that menu item. Copy this code: &#60;?php $title = $c-&#62;getCollectionName(); $parentPageId = $c-&#62;getCollectionParentID(); if ($parentPageId &#62; 1) {     $parentPage = Page::getById($parentPageId);     $title = $parentPage-&#62;getCollectionName(); } [...]]]></description>
		<wfw:commentRss>http://icode4you.net/display-page-title-top-parent-menu-item-sub-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tricks: Get the titles of recent blog posts from a certain category using wp_query</title>
		<link>http://icode4you.net/get-the-titles-of-recent-blog-posts-from-a-certain-category-using-wp_query</link>
		<comments>http://icode4you.net/get-the-titles-of-recent-blog-posts-from-a-certain-category-using-wp_query#comments</comments>
		<pubDate>Tue, 20 Mar 2012 18:39:53 +0000</pubDate>
		<dc:creator>Libby Fisher</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[recent]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp_query]]></category>

		<guid isPermaLink="false">http://icode4you.net/?p=2546</guid>
		<description><![CDATA[Here is a simple block of code that you can use to get the most recent post titles and permalinks to a certain number of the most recent posts in a certain category: &#160; &#60;ul&#62; &#60;?php global $cat; $recentPosts = new WP_Query(); $recentPosts-&#62;query('showposts=5&#38;cat=389'); ?&#62; &#60;?php while ($recentPosts-&#62;have_posts()) : $recentPosts-&#62;the_post(); ?&#62; &#60;li&#62;&#60;a href="&#60;?php the_permalink() ?&#62;" rel="bookmark"&#62;&#60;?php [...]]]></description>
		<wfw:commentRss>http://icode4you.net/get-the-titles-of-recent-blog-posts-from-a-certain-category-using-wp_query/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

