<?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/"
		>
<channel>
	<title>Comments on: 2 plugin giúp blog của bạn có phong cách magazine</title>
	<atom:link href="http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/feed/" rel="self" type="application/rss+xml" />
	<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/</link>
	<description>Cho những đam mê</description>
	<lastBuildDate>Fri, 12 Mar 2010 05:14:25 +0700</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Thuviengiadinh.com</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-2516</link>
		<dc:creator>Thuviengiadinh.com</dc:creator>
		<pubDate>Fri, 23 Oct 2009 04:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-2516</guid>
		<description>Trước mình cũng thử mấy cái không được, giờ mới biết cái này : Thumbnail for Excerpts</description>
		<content:encoded><![CDATA[<p>Trước mình cũng thử mấy cái không được, giờ mới biết cái này : Thumbnail for Excerpts</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nguyễn Nhân Tâm</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-2030</link>
		<dc:creator>Nguyễn Nhân Tâm</dc:creator>
		<pubDate>Tue, 22 Sep 2009 03:16:33 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-2030</guid>
		<description>Mới tìm hiểu wordpress mà thấy nhiều cái hay thiệt.

HUTEK giới thiệu bài trên, ai không biết coding thì đúng là bó chiếu..hii.
Bài trên phải đi kèm với themes &quot;webzine&quot; thì mới chạy được nội dung như trên.
Nếu bạn chạy themes khác thì vào file functions.php của themes webzine copy:
&lt;pre lang=&quot;php&quot;&gt;
/********************************************************************
Content Limit
********************************************************************/
//bản phải bỏ hw_ đi hoặc là sửa lại tên function ở đoàn code HUTEK giới thiệu ở trên

function hw_the_content_limit($max_char, $more_link_text = &#039;( ...)&#039;, $stripteaser = 0, $more_file = &#039;&#039;) {
    $content = get_the_content($more_link_text, $stripteaser, $more_file);
    $content = apply_filters(&#039;the_content&#039;, $content);
    $content = str_replace(&#039;]]&gt;&#039;, &#039;]]&gt;&#039;, $content);
    $content = strip_tags($content);

   if (strlen($_GET[&#039;p&#039;]) &gt; 0) {
      echo &quot;&quot;;
      echo $content;
      echo &quot; ...&quot;;
      echo &quot;&quot;;
   }
   else if ((strlen($content)&gt;$max_char) &amp;&amp; ($espacio = strpos($content, &quot; &quot;, $max_char ))) {
        $content = substr($content, 0, $espacio);
        $content = $content;
        echo &quot;&quot;;
        echo $content;
        echo &quot; ...&quot;;
        echo &quot;$more_link_text&quot;;
        echo &quot;&quot;;
   }
   else {
      echo &quot;&quot;;
      echo $content;
      echo &quot;&quot;;
   }
}
&lt;/pre&gt;
bỏ vào functions.php trong themes của bạn.</description>
		<content:encoded><![CDATA[<p>Mới tìm hiểu wordpress mà thấy nhiều cái hay thiệt.</p>
<p>HUTEK giới thiệu bài trên, ai không biết coding thì đúng là bó chiếu..hii.<br />
Bài trên phải đi kèm với themes &#8220;webzine&#8221; thì mới chạy được nội dung như trên.<br />
Nếu bạn chạy themes khác thì vào file functions.php của themes webzine copy:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/********************************************************************
Content Limit
********************************************************************/</span>
<span style="color: #666666; font-style: italic;">//bản phải bỏ hw_ đi hoặc là sửa lại tên function ở đoàn code HUTEK giới thiệu ở trên</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> hw_the_content_limit<span style="color: #009900;">&#40;</span><span style="color: #000088;">$max_char</span><span style="color: #339933;">,</span> <span style="color: #000088;">$more_link_text</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'( ...)'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$stripteaser</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$more_file</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> get_the_content<span style="color: #009900;">&#40;</span><span style="color: #000088;">$more_link_text</span><span style="color: #339933;">,</span> <span style="color: #000088;">$stripteaser</span><span style="color: #339933;">,</span> <span style="color: #000088;">$more_file</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">']]&amp;gt;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">']]&amp;gt;'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strip_tags</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
   <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'p'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; ...&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
   <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span><span style="color: #000088;">$max_char</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$espacio</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot; &quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$max_char</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$espacio</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; ...&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$more_link_text</span>&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
   <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>bỏ vào functions.php trong themes của bạn.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: themes4free.org</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-1865</link>
		<dc:creator>themes4free.org</dc:creator>
		<pubDate>Fri, 11 Sep 2009 16:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-1865</guid>
		<description>anh hutek ơi qua blog em giúp em với,em đã cài 2 cai plugin trên rùi mà vẫn ko hiện thumnail.Anh wa blog em cho ý kiến nhé.
Comment lại cho em ở đây nhé.thanks anh.
http://themes4free.org/?p=19</description>
		<content:encoded><![CDATA[<p>anh hutek ơi qua blog em giúp em với,em đã cài 2 cai plugin trên rùi mà vẫn ko hiện thumnail.Anh wa blog em cho ý kiến nhé.<br />
Comment lại cho em ở đây nhé.thanks anh.<br />
<a href="http://themes4free.org/?p=19" rel="nofollow">http://themes4free.org/?p=19</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quangthien</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-1334</link>
		<dc:creator>quangthien</dc:creator>
		<pubDate>Sun, 02 Aug 2009 07:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-1334</guid>
		<description>Bạn hãy help cho mình bỏ đoạn code này ở đâu đc hok ??</description>
		<content:encoded><![CDATA[<p>Bạn hãy help cho mình bỏ đoạn code này ở đâu đc hok ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hutek</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-1056</link>
		<dc:creator>Hutek</dc:creator>
		<pubDate>Thu, 16 Jul 2009 07:28:10 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-1056</guid>
		<description>Welcome back</description>
		<content:encoded><![CDATA[<p>Welcome back</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nghề Thư viện</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-1052</link>
		<dc:creator>Nghề Thư viện</dc:creator>
		<pubDate>Thu, 16 Jul 2009 02:10:01 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-1052</guid>
		<description>bài này khá hữu ích đối với theme không hỗ trợ thumnail đi kèm post, chúc hutek phát triển thêm, lâu rồi mới come back hutek, hihi  :D</description>
		<content:encoded><![CDATA[<p>bài này khá hữu ích đối với theme không hỗ trợ thumnail đi kèm post, chúc hutek phát triển thêm, lâu rồi mới come back hutek, hihi  <img src='http://hutek.info/wp-includes/images/smilies/49.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hutek</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-1028</link>
		<dc:creator>Hutek</dc:creator>
		<pubDate>Tue, 14 Jul 2009 14:38:33 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-1028</guid>
		<description>Ý mình là clone cái js của nó ấy, ở đó có nhiều js hay lắm, chịu khó tìm một tí</description>
		<content:encoded><![CDATA[<p>Ý mình là clone cái js của nó ấy, ở đó có nhiều js hay lắm, chịu khó tìm một tí</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: V.C</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-1026</link>
		<dc:creator>V.C</dc:creator>
		<pubDate>Tue, 14 Jul 2009 06:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-1026</guid>
		<description>Cũng tạm bác ạ. Em muốn tìm cái nào mà nó có hình ảnh chính và những hình ảnh nhỏ bên cạnh, có nút next và prev.
Cái D13slideshow thì ko có mấy cái đấy đâm ra ko đc chuyên nghiệp lắm :-??
Em thấy cái featured content gallery plugin cũng đc mà cấu hình mãi nó ko hiện ra nên cũng nản luôn.</description>
		<content:encoded><![CDATA[<p>Cũng tạm bác ạ. Em muốn tìm cái nào mà nó có hình ảnh chính và những hình ảnh nhỏ bên cạnh, có nút next và prev.<br />
Cái D13slideshow thì ko có mấy cái đấy đâm ra ko đc chuyên nghiệp lắm :-??<br />
Em thấy cái featured content gallery plugin cũng đc mà cấu hình mãi nó ko hiện ra nên cũng nản luôn.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hutek</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-1018</link>
		<dc:creator>Hutek</dc:creator>
		<pubDate>Mon, 13 Jul 2009 11:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-1018</guid>
		<description>Vấn đề là muốn chuyên nghiệp hơn như thế nào, cái d13 nhìn cũng được đấy chứ</description>
		<content:encoded><![CDATA[<p>Vấn đề là muốn chuyên nghiệp hơn như thế nào, cái d13 nhìn cũng được đấy chứ</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: V.C</title>
		<link>http://hutek.info/2009/05/20/2-plugin-giup-blog-cua-ban-co-phong-cach-magazine/comment-page-1/#comment-1017</link>
		<dc:creator>V.C</dc:creator>
		<pubDate>Mon, 13 Jul 2009 08:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://hutek.info/?p=372#comment-1017</guid>
		<description>À ko :-j Theme magazine thì em ko thiếu.
Em chỉ muốn tìm một cái featured content thôi. Giá có cái plugin nào ngon ngon thì tốt. Em thử 5, 6 cái rồi mà có duy nhất cái D13slideshow là tàm tạm.
H muốn tìm 1 cái chuyên nghiệp hơn mà ko có.</description>
		<content:encoded><![CDATA[<p>À ko :-j Theme magazine thì em ko thiếu.<br />
Em chỉ muốn tìm một cái featured content thôi. Giá có cái plugin nào ngon ngon thì tốt. Em thử 5, 6 cái rồi mà có duy nhất cái D13slideshow là tàm tạm.<br />
H muốn tìm 1 cái chuyên nghiệp hơn mà ko có.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
