<?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>web2ajax &#187; Wordpress</title>
	<atom:link href="http://www.web2ajax.fr/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.web2ajax.fr</link>
	<description>Tout l&#039;actualité du Web2.0 et de l&#039;AJAX</description>
	<lastBuildDate>Thu, 10 Feb 2011 00:25:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<atom:link rel='hub' href='http://www.web2ajax.fr/?pushpress=hub'/>
		<item>
		<title>WordPress Tips : Hide oldest comments in wordpress with jQuery</title>
		<link>http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/</link>
		<comments>http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 03:17:51 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[comments.php]]></category>
		<category><![CDATA[hide comments]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress tricks]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=384</guid>
		<description><![CDATA[A simple tip for wordpress blogs to hide oldest comments at single load page with jQuery.For this tip, I suppose you already load jQuery JS framework in your blog.In your wordpress theme directory, edit 'comments.php' and add the code below to to the end of the file :[sourcecode] jQuery(document).ready(function() { var $comment = $('#comment_list') ; [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/' title='Permanent link to WordPress Tips : Hide oldest comments in wordpress with jQuery'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2010/04/m8a.png&w=200' alt='WordPress Tips : Hide oldest comments in wordpress with jQuery'  /></a></div>
<div class="content">A simple tip for wordpress blogs to hide oldest comments at single load page with jQuery.<br><br><br>For this tip, I suppose you already load jQuery JS framework in your blog.<br><br>In your wordpress theme directory, edit 'comments.php' and add the code below to to the end of the file :<br><br>[sourcecode]<br><br>	jQuery(document).ready(function() {<br>		<br>		var $comment = $('#comment_list') ;<br>		var $comments = $comment.find('li') ;<br>		var num2display = 8 ; <br>		<br>		// -- Hide all comments except 'num2display' newest<br>		$comments.slice(0, $comments.length - num2display).css({display:'none'}) ;<br>		<br>		// -- Create the 'Show all comments' link<br>		if ( $comments.length > num2display ) {<br>			$show_all = $('<p style="padding: 10px 20px; color:#005f90; font-size: 15px; text-decoration: underline; cursor: pointer; ">Click here to view the '+Math.max(0, $comments.length - num2display) +' other comments...</p>') ;<br>			<br>			// -- Bind click on link<br>			$show_all.click(function() {<br>				$comments.css({display:'block'}) ;<br>				$(this).remove() ;<br>			}) ;<br>			<br>			// -- Insert link to click after comments list<br>			$show_all.insertAfter($comment.find('ul')) ;<br>		}<br>	}) ;<br><br>[/sourcecode]<br><br>Then, at load page, you will only have the 8 newest comments on your post and a link to show others.<br><br>Look at this blog for more examples and have fun with jQuery !</div></div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2010/06/10/defer-google-analytics-tracking-jquery-gatracker/' rel='bookmark' title='Defer Google Analytics Tracking : jquery.gaTracker'>Defer Google Analytics Tracking : jquery.gaTracker</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2008/04/30/wptouch-un-plugin-iphone-pour-wordpress/' rel='bookmark' title='WPTouch : un plugin iPhone pour WordPress'>WPTouch : un plugin iPhone pour WordPress</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/03/25/jquery-lazyload-ad-defer-advertisement-loading/' rel='bookmark' title='jQuery LazyLoad Ad : Delays loading of advertising'>jQuery LazyLoad Ad : Delays loading of advertising</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog Design on web2ajax !</title>
		<link>http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/</link>
		<comments>http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:40:42 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Mes travaux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[funky]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.web2ajax.fr/?p=156</guid>
		<description><![CDATA[Web2ajaX has a new face today !!More Funky, more colored, I hope those changes on theme will enjoy your navigation on this blog.Bye and see you for the next episode... Related posts:&#160;Ouverture du Blog !!]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/' title='Permanent link to New Blog Design on web2ajax !'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2010/03/web2ajax_newDesign-177x300.png&w=200' alt='New Blog Design on web2ajax !'  /></a></div>
<div class="content">Web2ajaX has a new face today !!<br><br>More Funky, more colored, I hope those changes on theme will enjoy your navigation on this blog.<br><br>Bye and see you for the next episode...</div></div><div class="buttons"></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2007/08/20/ouverture-du-blog/' rel='bookmark' title='Ouverture du Blog !!'>Ouverture du Blog !!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2010/03/19/new-blog-design-on-web2ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPTouch : un plugin iPhone pour WordPress</title>
		<link>http://www.web2ajax.fr/2008/04/30/wptouch-un-plugin-iphone-pour-wordpress/</link>
		<comments>http://www.web2ajax.fr/2008/04/30/wptouch-un-plugin-iphone-pour-wordpress/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 17:09:47 +0000</pubDate>
		<dc:creator>Guillaume DE LA RUE</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://web2ajax.fr/?p=37</guid>
		<description><![CDATA[Pour continuer avec l'iPhone, j'ai trouvé ce plugin hyper simple à installer pour transformer votre blog wordPress en version iPhone : WPTouchCelui-ci détecte automatiquement le user agent et si vous surfez avec un iPhone, vous verrez le site en version optimisée pour l'iPhone.Je l'ai installé en moins de 2 minutes :)Et si jamais vous souhaitez [...]]]></description>
			<content:encoded><![CDATA[<div class="entry"><div class='post-thumbnail' ><a href='http://www.web2ajax.fr/2008/04/30/wptouch-un-plugin-iphone-pour-wordpress/' title='Permanent link to WPTouch : un plugin iPhone pour WordPress'><img src='http://www.web2ajax.fr/thumb.php?i=http://www.web2ajax.fr/wp-content/uploads/2008/04/wptouch-header-300x94.jpg&w=200' alt='WPTouch : un plugin iPhone pour WordPress'  /></a></div>
<div class="content">Pour continuer avec l'iPhone, j'ai trouvé ce plugin hyper simple à installer pour transformer votre blog wordPress en version iPhone : WPTouch<br><br>Celui-ci détecte automatiquement le user agent et si vous surfez avec un iPhone, vous verrez le site en version optimisée pour l'iPhone.<br>Je l'ai installé en moins de 2 minutes :)<br><br>Et si jamais vous souhaitez tout de même voir le site en version nomale : il y'a un lien en bas de page.<br><br>Y'a pas plus simple !!</div></div><div class="buttons"><div class="go_visit"><a href="http://www.bravenewcode.com/products/wptouch/" target="_blank" title="Visit the cited website in WPTouch : un plugin iPhone pour WordPress"><img src="https://s3.amazonaws.com/web2ajax/Web2ajax_v2/img/button_goto.png" width="198" height="60"></a></div></div>
	<div class="clearfix"></div>

<p>Related posts:<ol><li>&nbsp;<a href='http://www.web2ajax.fr/2008/04/25/iui-lavf-en-version-iphone/' rel='bookmark' title='Framework IUI : Lavf.com en version iPhone'>Framework IUI : Lavf.com en version iPhone</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/04/22/how-to-hide-oldest-comments-in-wordpress-with-jquery/' rel='bookmark' title='WordPress Tips : Hide oldest comments in wordpress with jQuery'>WordPress Tips : Hide oldest comments in wordpress with jQuery</a></li>
<li>&nbsp;<a href='http://www.web2ajax.fr/2010/10/19/jquery-lazyload-ad-v1-4-new-version-of-defer-ad-plugin/' rel='bookmark' title='jQuery LazyLoad Ad v1.4 : new version of defer ad plugin !'>jQuery LazyLoad Ad v1.4 : new version of defer ad plugin !</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.web2ajax.fr/2008/04/30/wptouch-un-plugin-iphone-pour-wordpress/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 8.072 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-04 11:25:09 -->
<!-- Compression = gzip -->
