<?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/"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
> <channel><title>Comments on: Assign Attributes To The WP_List_Pages Tag</title> <atom:link href="http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag/feed" rel="self" type="application/rss+xml" /><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=assign-attributes-to-the-wp-list-pages-tag</link> <description>A blog all about WordPress. Yes, we&#039;re a bit meta.</description> <lastBuildDate>Thu, 09 Feb 2012 06:42:43 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: Mega Menus redux: Integration with WordPress navigation</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2653</link> <dc:creator>Mega Menus redux: Integration with WordPress navigation</dc:creator> <pubDate>Fri, 09 Apr 2010 20:12:56 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2653</guid> <description>[...] The jQuery method of adding the anchor ID was modified from a technique outlined in this post on wpcandy.com.  This entry was posted in Development Notes and tagged javascript, mega menu, [...]</description> <content:encoded><![CDATA[<p>[...] The jQuery method of adding the anchor ID was modified from a technique outlined in this post on wpcandy.com.  This entry was posted in Development Notes and tagged javascript, mega menu, [...]</p> ]]></content:encoded> </item> <item><title>By: Caroline</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2652</link> <dc:creator>Caroline</dc:creator> <pubDate>Sun, 10 Jan 2010 13:05:07 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2652</guid> <description>Just wanted to say thankyou so much to Michael and to Chris also.
After spending lots of time working on php to get around this problem I found this and am now fully converted to jquery!I especially needed to know how to assign classes to parents and then child, would never have guessed it would have been two lines of code.Thanks again</description> <content:encoded><![CDATA[<p>Just wanted to say thankyou so much to Michael and to Chris also.<br
/> After spending lots of time working on php to get around this problem I found this and am now fully converted to jquery!</p><p>I especially needed to know how to assign classes to parents and then child, would never have guessed it would have been two lines of code.</p><p>Thanks again</p> ]]></content:encoded> </item> <item><title>By: Asad</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2651</link> <dc:creator>Asad</dc:creator> <pubDate>Thu, 10 Dec 2009 18:17:56 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2651</guid> <description>Hey.maybe you can help me on thisi wanna make a navigation list with wp_list_pageswhich results in looking like following:&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;Home&lt;/a&gt;i need to add a class attribute to the a href, where the class is iterated like link 1, link 2, link 3, etc. for each parent page.Any idea?</description> <content:encoded><![CDATA[<p>Hey.</p><p>maybe you can help me on this</p><p>i wanna make a navigation list with wp_list_pages</p><p>which results in looking like following:</p><p> <a
href="#" rel="nofollow">Home</a></p><p>i need to add a class attribute to the a href, where the class is iterated like link 1, link 2, link 3, etc. for each parent page.</p><p>Any idea?</p> ]]></content:encoded> </item> <item><title>By: Adam</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2650</link> <dc:creator>Adam</dc:creator> <pubDate>Fri, 13 Feb 2009 23:23:11 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2650</guid> <description>the proper way to add scripts and avoid conflicts is to use wp_enqueue_script. Doing it this way will make sure the script is only loaded once. Another nice thing is you can specify a script that depends on another and have wordpress automatically load the dependency.example:
wp_enqueue_script(&#039;newscript&#039;,&#039;/wp-content/plugins/someplugin/js/newscript.js&#039;,array(&#039;scriptaculous&#039;),&#039;1.0&#039; );This will load the newscript.js as well as the scriptaculous script it depends on, If not already loaded.Adam</description> <content:encoded><![CDATA[<p>the proper way to add scripts and avoid conflicts is to use wp_enqueue_script. Doing it this way will make sure the script is only loaded once. Another nice thing is you can specify a script that depends on another and have wordpress automatically load the dependency.</p><p>example:<br
/> wp_enqueue_script(&#8216;newscript&#8217;,'/wp-content/plugins/someplugin/js/newscript.js&#8217;,array(&#8216;scriptaculous&#8217;),&#8217;1.0&#8242; );</p><p>This will load the newscript.js as well as the scriptaculous script it depends on, If not already loaded.</p><p>Adam</p> ]]></content:encoded> </item> <item><title>By: Kromack</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2649</link> <dc:creator>Kromack</dc:creator> <pubDate>Sun, 08 Feb 2009 18:45:27 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2649</guid> <description>Thank&#039;s here the code for mootools :var list = $$(&#039;.page_item&#039;);
list.each(function(element) {
element.addClass(&#039;your_class&#039;);
});</description> <content:encoded><![CDATA[<p>Thank&#8217;s here the code for mootools :</p><p> var list = $$(&#8216;.page_item&#8217;);<br
/> list.each(function(element) {<br
/> element.addClass(&#8216;your_class&#8217;);<br
/> });</p> ]]></content:encoded> </item> <item><title>By: Dan Philibin</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2648</link> <dc:creator>Dan Philibin</dc:creator> <pubDate>Thu, 12 Jun 2008 01:43:59 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2648</guid> <description>@Graeme thanks! I guess we should turn off search engine blocking now that the site is live..</description> <content:encoded><![CDATA[<p>@Graeme thanks! I guess we should turn off search engine blocking now that the site is live..</p> ]]></content:encoded> </item> <item><title>By: Scott Bernadot</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2647</link> <dc:creator>Scott Bernadot</dc:creator> <pubDate>Wed, 11 Jun 2008 17:03:14 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2647</guid> <description>@ Chris - Awesome! Thank you for sharing your expertise. Very appreciated.-Scott</description> <content:encoded><![CDATA[<p>@ Chris &#8211; Awesome! Thank you for sharing your expertise. Very appreciated.</p><p>-Scott</p> ]]></content:encoded> </item> <item><title>By: Chris Poteet</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2646</link> <dc:creator>Chris Poteet</dc:creator> <pubDate>Wed, 11 Jun 2008 15:47:59 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2646</guid> <description>@Michael: Yes, I meant in v.1 which you made available for public release.  That whole tutorial was about v.1.  So you might want to (a) alert people to now add that and (2) update your CSS file in the theme.I knew why it wasn&#039;t included, but now you can.  So just like alerting your users to the jQuery tip you should also (IMHO) alert them to that.</description> <content:encoded><![CDATA[<p>@Michael: Yes, I meant in v.1 which you made available for public release.  That whole tutorial was about v.1.  So you might want to (a) alert people to now add that and (2) update your CSS file in the theme.</p><p>I knew why it wasn&#8217;t included, but now you can.  So just like alerting your users to the jQuery tip you should also (IMHO) alert them to that.</p> ]]></content:encoded> </item> <item><title>By: Graeme Mac</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2645</link> <dc:creator>Graeme Mac</dc:creator> <pubDate>Wed, 11 Jun 2008 15:35:46 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2645</guid> <description>Hey Michael,You have a conflict between 2 sets of meta robots tags in your header file.Right now your site is set to noindex, nofollow. Meaning that the search engines will not follow your links to index your content.I don&#039;t think this is on purpose but thought you should know.</description> <content:encoded><![CDATA[<p>Hey Michael,</p><p>You have a conflict between 2 sets of meta robots tags in your header file.</p><p>Right now your site is set to noindex, nofollow. Meaning that the search engines will not follow your links to index your content.</p><p>I don&#8217;t think this is on purpose but thought you should know.</p> ]]></content:encoded> </item> <item><title>By: Michael Castilla</title><link>http://wpcandy.com/teaches/assign-attributes-to-the-wp-list-pages-tag#comment-2644</link> <dc:creator>Michael Castilla</dc:creator> <pubDate>Wed, 11 Jun 2008 14:27:28 +0000</pubDate> <guid
isPermaLink="false">http://wpcandy.com/?p=560#comment-2644</guid> <description>@Chris: Which theme? I didn&#039;t have it in the WPCandy v1 theme because, well, I was using the hardcoded links, I had it in WPCandy v2, and we&#039;re currently using it here with the WPCandy v3 theme :)</description> <content:encoded><![CDATA[<p>@Chris: Which theme? I didn&#8217;t have it in the WPCandy v1 theme because, well, I was using the hardcoded links, I had it in WPCandy v2, and we&#8217;re currently using it here with the WPCandy v3 theme <img
src='http://cdn.wpcandy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic
Database Caching 30/40 queries in 0.010 seconds using disk: basic
Object Caching 848/860 objects using disk: basic
Content Delivery Network via cdn.wpcandy.com

Served from: wpcandy.com @ 2012-02-09 01:58:39 -->
