<?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>link2caro &#187; WordPress</title>
	<atom:link href="http://link2caro.net/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://link2caro.net</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 09:41:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress 3.0</title>
		<link>http://link2caro.net/read/wordpress-3-0/</link>
		<comments>http://link2caro.net/read/wordpress-3-0/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 09:41:15 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=716</guid>
		<description><![CDATA[&#160; WordPress 3.0 đã chính thức được phát hành ngày 17/06/2010 với nhiều tính năng mới nổi bật cho cả người dùng bình thường lẫn người dùng chuyên nghiệp (lập trình viên) Một tính năng nổi bật nhất đó là bạn có thể cắt, chỉnh sửa ảnh của bạn trực tiếp trong WordPress (như hình [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><img class="aligncenter" title="Chỉnh sửa ảnh  trong WordPress" src="http://files.link2caro.net/2010/06/ss4.png" alt="" width="466" height="303" /></p>
<p><img class="aligncenter size-medium wp-image-722" title="Chỉnh sửa ảnh trong WordPress 3.0" src="http://files.link2caro.net/2010/06/ss5-500x349.png" alt="" width="500" height="349" /></p>
<p style="text-align: left;">WordPress 3.0 đã chính thức được phát hành ngày 17/06/2010 với nhiều tính năng mới nổi bật cho cả người dùng bình thường lẫn người dùng chuyên nghiệp (lập trình viên)</p>
<p style="text-align: left;">Một tính năng nổi bật nhất đó là bạn có thể cắt, chỉnh sửa ảnh của bạn trực tiếp trong WordPress (như hình minh họa)</p>
<p style="text-align: left;">Bạn có thể tham khảo các tính năng mới của WordPress 3.0 tại đây:</p>
<p style="text-align: left;">http://codex.wordpress.org/Version_3.0</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi Domains with one WordPress installation</title>
		<link>http://link2caro.net/read/multi-domains-with-one-wordpress-installation/</link>
		<comments>http://link2caro.net/read/multi-domains-with-one-wordpress-installation/#comments</comments>
		<pubDate>Sun, 03 May 2009 01:04:14 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[hướng dẫn]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=555</guid>
		<description><![CDATA[File to modify: wp-config.php]]></description>
			<content:encoded><![CDATA[<p>File to modify: wp-config.php</p>
<pre class="brush: php; title: ; notranslate">
&amp;amp;lt;?php
/* Domain detection - Xác định tên miền */

$host = $HTTP_HOST;
$parts = explode('.',$host);
if ($parts[3] = &quot;&quot;) {
$domain = $parts[0];
} else {
$domain = $parts[1];
}

/* Settings - Cài đặt */

switch ($domain) {
case &quot;domain1&quot;:		// &quot;domain&quot; in &quot;www.domain.com&quot;
$db = &quot;database1&quot;;		// the database for this domain
$user = &quot;username1&quot;;	// the username for this database
$password = &quot;pass1&quot;;	// the password for this database
$hostname = &quot;localhost&quot;;	// 99% chance you won't need to change this value
$table_prefix  = 'wp_';	// change for multiple installations in one database
$wplang = '';		// change to localize wordpress (must have an MO file in wp-includes/languages)
break;

case &quot;domain2&quot;:		// &quot;domain&quot; in &quot;www.domain.com&quot;
$db = &quot;database2&quot;;		// the database for this domain
$user = &quot;username2&quot;;	// the username for this database
$password = &quot;pass2&quot;;	// the password for this database
$hostname = &quot;localhost&quot;;	// 99% chance you won't need to change this value
$table_prefix  = 'wp_';	// change for multiple installations in one database
$wplang = '';		// change to localize wordpress (must have an MO file in wp-includes/languages)
break;
}

/* End of settings - Kết thúc phần cài đặt*/

define('DB_NAME', $db);
define('DB_USER', $user);
define('DB_PASSWORD', $password);
define('DB_HOST', $hostname);

define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define ('WPLANG', $wplang);

// Enable the WordPress Object Cache:
define('ENABLE_CACHE', true);
//define('WP_MEMORY_LIMIT', '48MB');

define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');

?&amp;amp;gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/multi-domains-with-one-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WPVN-HideText</title>
		<link>http://link2caro.net/read/wpvn-hidetext/</link>
		<comments>http://link2caro.net/read/wpvn-hidetext/#comments</comments>
		<pubDate>Sat, 02 May 2009 23:14:56 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=544</guid>
		<description><![CDATA[This plugin is used to hide some content in a Post or a Page by a link, when you click the entire hidden content will appear. The link is not toggle between Show/Hide for this version, I will implement that function soon. Use: case insensitive [ hide[=Text to be displayed instead of default text]]TEXT[/hide ] [...]]]></description>
			<content:encoded><![CDATA[<p>This plugin is used to hide some content in a Post or a Page by a link, when you click the entire hidden content will appear.</p>
<p>The link is not toggle between Show/Hide for this version, I will implement that function soon.</p>
<p>Use: case insensitive</p>
<p><code>[ hide[=Text to be displayed instead of default text]]TEXT[/hide ]</code></p>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/wp-hidetext/">http://wordpress.org/extend/plugins/wp-hidetext/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wpvn-hidetext/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Tiếng Việt đến với WordPress.com</title>
		<link>http://link2caro.net/read/wordpress-com/</link>
		<comments>http://link2caro.net/read/wordpress-com/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 19:20:05 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[tiếng việt]]></category>
		<category><![CDATA[việt hóa]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=525</guid>
		<description><![CDATA[Vậy là 30% (vừa xem lại , 58% chứ :p chị tội 30% fuzzy, mai cập nhật bản 70%) WordPress.com đã được Việt hóa! Mong các bạn sẽ thấy WordPress.com trở nên gần gũi hơn]]></description>
			<content:encoded><![CDATA[<p><a href="http://files.link2caro.net/2009/04/picture-2.png" rel="lightbox[525]"><img class="size-medium wp-image-526 alignleft" title="WordPress.com" src="http://files.link2caro.net/2009/04/picture-2-300x150.png" alt="WordPress.com" width="300" height="150" /></a>Vậy là <span style="text-decoration: line-through;">30%</span> (vừa xem lại , 58% chứ :p chị tội 30% fuzzy, mai cập nhật bản 70%) WordPress.com đã được Việt hóa!</p>
<p>Mong các bạn sẽ thấy WordPress.com trở nên gần gũi hơn <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wordpress-com/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>vi.WordPress.org</title>
		<link>http://link2caro.net/read/viwordpressorg/</link>
		<comments>http://link2caro.net/read/viwordpressorg/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 07:01:06 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Tiếng Việt]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=430</guid>
		<description><![CDATA[Phew, vậy là sau bao năm giờ đã có vi.WordPress.org, tiến tới sẽ làm forum trên WordPress.org]]></description>
			<content:encoded><![CDATA[<p>Phew, vậy là sau bao năm giờ đã có vi.WordPress.org, tiến tới sẽ làm forum trên WordPress.org <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/viwordpressorg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 5/28 queries in 0.080 seconds using apc
Object Caching 552/605 objects using apc

Served from: link2caro.net @ 2012-02-08 23:43:23 -->
