<?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>Digituck - Coretan Digit &#187; Belajar Wordpress</title>
	<atom:link href="http://www.digituck.com/tag/belajar-wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.digituck.com</link>
	<description>Belajar Information Technology</description>
	<lastBuildDate>Fri, 10 Sep 2010 16:07:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Menambahkan dan Memutar mp3 pada postingan Wordpress</title>
		<link>http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html</link>
		<comments>http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html#comments</comments>
		<pubDate>Fri, 07 May 2010 11:52:12 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[audio mp3]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[ngeblog]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=1199</guid>
		<description><![CDATA[

Tutorial Blog berikut ini untuk menampilkan file audio yang berformat mp3 pada setiap melakukan posting di blog Wordpres Self-Hosting yang memang saat itu perlu kita tampilkan. Memutar file mp3 ini tidak diperlukan plugin, yang dibutuhkan adalah JW-Player yang didapat dari longtailvideo.com. 

1. Download lebih dahulu JW-Player, klik Disini.

2. Extract kemudian Upload file folder JW tersebut [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html/mp3" rel="attachment wp-att-1229"><img src="http://www.digituck.com/wp-content/uploads/mp3-300x300.png" alt="mp3 pada Wordpress" width="150" height="150" class="aligncenter size-medium wp-image-1229" /></a><br />
<a href="http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html/attachment/3" rel="attachment wp-att-1236"><img src="http://www.digituck.com/wp-content/uploads/3-300x15.png" alt="mp3 pada Wordpress"  width="300" height="15" class="aligncenter size-medium wp-image-1236" /></a></p>
<p align="justify"><a href="http://www.digituck.com/tag/tutorial-blog" target="_blank">Tutorial Blog</a> berikut ini untuk menampilkan file audio yang berformat mp3 pada setiap melakukan posting di blog Wordpres <em>Self-Hosting</em> yang memang saat itu perlu kita tampilkan. Memutar file mp3 ini tidak diperlukan plugin, yang dibutuhkan adalah JW-Player yang didapat dari <a href="http://www.longtailvideo.com" target="_blank">longtailvideo.com</a>. </p>
<p align="justify">
<strong>1. </strong>Download lebih dahulu JW-Player, <a href="http://www.ziddu.com/download/9764187/jw.rar.html" target="_blank">klik Disini</a>.</p>
<p align="justify">
<strong>2.</strong> Extract kemudian Upload file folder <em>JW</em> tersebut ke root domain kamu. <em><strong>http://my-site.com/wp-content/themes/my-theme/jw/</strong>.</em> Contoh : untuk blog ini diupload kedalam root domain <em>http://digituck.com/wp-content/themes/digitucktheme/jw/</em>.</p>
<p align="justify">
<strong>3.</strong> Setelah selesai di upload, kita sedikit menambahkan kode ke dalam <strong>Appearance Editor</strong>  Admin panel Wordpress. Letakkan kode dibawah ini kedalam <strong>Single Post</strong> (<em>single.php</em>). Diletakkan tepat dibawah <em>&lt;div class=&quot;PostContent&quot;&gt;&lt;/div&gt;</em> kemudian simpan perubahan.<br />
<span id="more-1199"></span></p>
<table width="100%" border="0">
<tr>
<td width="1%" bgcolor="#23282d"></td>
<td bgcolor="#cd8b63"><span><font color="white" face="courier new">
<p>&lt;?php $mp3s = get_children( &#8216;numberposts=-1&amp;post_type=attachment&amp;post_mime_type=audio&amp;post_parent=&#8217;.$post-&gt;ID );</p>
<p> if (!empty($mp3s)) : ?&gt;</p>
<p> &lt;?php foreach($mp3s as $mp3) : ?&gt;<br />
  &lt;object width=&#8217;470&#8242; height=&#8217;24&#8242; id=&#8217;single&lt;?php echo $mp3-&gt;ID; ?&gt;&#8217; name=&#8217;single&lt;?php echo $mp3-&gt;ID; ?&gt;&#8217;&gt;<br />
  &lt;param name=&#8217;movie&#8217; value=&#8217;player.swf&#8217;&gt;<br />
  &lt;param name=&#8217;allowfullscreen&#8217; value=&#8217;true&#8217;&gt;<br />
  &lt;param name=&#8217;allowscriptaccess&#8217; value=&#8217;always&#8217;&gt;<br />
  &lt;param name=&#8217;wmode&#8217; value=&#8217;transparent&#8217;&gt;<br />
  &lt;param name=&#8217;flashvars&#8217; value=&#8217;file=&lt;?php echo $mp3-&gt;guid;?&gt;&#8217;&gt;<br />
  &lt;embed<br />
  id=&#8217;single&lt;?php echo $mp3-&gt;ID;?&gt;&#8217;<br />
  name=&#8217;single&lt;?php echo $mp3-&gt;ID;?&gt;&#8217;<br />
  src=&#8217;&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;/jw/player.swf&#8217;<br />
  width=&#8217;470&#8242;<br />
  height=&#8217;24&#8242;<br />
  bgcolor=&#8217;#ffffff&#8217;<br />
  allowscriptaccess=&#8217;always&#8217;<br />
  allowfullscreen=&#8217;true&#8217;<br />
  flashvars=&#8217;file=&lt;?php echo $mp3-&gt;guid; ?&gt;&#8217;<br />
  /&gt;<br />
  &lt;/object&gt;<br />
  &lt;?php endforeach; ?&gt;</p>
<p> &lt;?php endif; ?&gt;</p>
<p></font></span></td>
</tr>
</table>
<p align="justify">
<strong>4.</strong> Nah, sekarang kita lakukan Tes Posting, buka menu <strong>Post &#8211; Add New</strong> pada Admin Panel Wordpress seperti layaknya kita membuat postingan baru. Didalam postingan yang kita buat, kita tambahkan file mp3 yang akan kita sertakan dalam postingan tersebut melalui tombol Add Media (Tombol Upload/Insert tepat dibawah Judul, Permalink). Namun setelah memilih dan upload file mp3, <strong>jangan</strong> klik tombol <strong>Insert Into Post</strong>, karena dengan kita langsung men-save file mp3 tersebut otomatis Wordpress akan Attach file media mp3 tersebut kedalam postingan yang sedang kita buat. Perhatikan gambar berikut ini :<br />
<center><a href="http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html/2-2" rel="attachment wp-att-1214"><img src="http://www.digituck.com/wp-content/uploads/21.png" alt="mp3 pada Wordpress" width="80%" height="80%" class="aligncenter size-full wp-image-1214" /></a></center></p>
<p align="justify">


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html&amp;title=Menambahkan+dan+Memutar+mp3+pada+postingan+Wordpress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html&amp;title=Menambahkan+dan+Memutar+mp3+pada+postingan+Wordpress" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Menambahkan+dan+Memutar+mp3+pada+postingan+Wordpress+-+http://b2l.me/s9aDw+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html&amp;t=Menambahkan+dan+Memutar+mp3+pada+postingan+Wordpress" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html&amp;n=Menambahkan+dan+Memutar+mp3+pada+postingan+Wordpress&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=1199&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/menambahkan-dan-memutar-mp3-pada-postingan-wordpress.html/feed</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>Artikel Terkait berdasarkan Tags (tanpa Plugin)</title>
		<link>http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html</link>
		<comments>http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html#comments</comments>
		<pubDate>Sun, 10 Jan 2010 05:48:18 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[ngeblog]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=711</guid>
		<description><![CDATA[Salah satu yang seringkali digunakan pada setiap halaman artikel atau posting adalah merelasikan artikel tersebut pada artikel-artikel sebelumnya sehingga para pengunjung dengan mudah dapat membaca kembali dan menemukan artikel-artikel blog kita yang masih terkait dengan topik atau tema dari postingan-postingan kita yang memang memiliki konten artikel yang sama.

Berikut ini adalah script cara membuat Related Post [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Salah satu yang seringkali digunakan pada setiap halaman artikel atau <em>posting </em>adalah merelasikan artikel tersebut pada artikel-artikel sebelumnya sehingga para pengunjung dengan mudah dapat membaca kembali dan menemukan artikel-artikel blog kita yang masih terkait dengan topik atau tema dari postingan-postingan kita yang memang memiliki konten artikel yang sama.</p>
<p align="justify">
Berikut ini adalah script cara membuat <strong>Related Post</strong> atau <strong>Artikel Terkait</strong> berdasarkan Tags pada wordpress. Related Post ini bukan berupa Plugin dan yang perlu dilakukan adalah menempatkan script ini pada <em>singel.php</em>.</p>
<table width="100%" border="0">
<tr>
<td bgcolor="#222222"width="1%" bgcolor="blue"></td>
<td bgcolor="#ebebe4"><span><font color="222222" face="verdana"></font></span>&lt;?php<br />
//for use in the loop, list 5 post titles related to first tag on current post<br />
$backup = $post;  // backup the current object<br />
$tags = wp_get_post_tags($post-&gt;ID);<br />
echo &quot;&lt;div&gt;&lt;h3&gt;Related Posts&lt;/h3&gt;&quot;;<br />
	$tagIDs = array();<br />
	if ($tags)<br />
	{<br />
		$tagcount = count($tags);<br />
			for ($i = 0; $i &lt; $tagcount; $i++) {<br />
			$tagIDs[$i] = $tags[$i]-&gt;term_id;<br />
			}<br />
			$args=array(<br />
			&#8216;tag__in&#8217; =&gt; $tagIDs,<br />
			&#8216;post__not_in&#8217; =&gt; array($post-&gt;ID),<br />
			&#8217;showposts&#8217;=&gt;5,<br />
			&#8216;caller_get_posts&#8217;=&gt;1<br />
			);<br />
			$my_query = new WP_Query($args);<br />
			if( $my_query-&gt;have_posts() )<br />
			{<br />
			echo &quot;&lt;ul&gt;&quot;;<br />
			while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post(); ?&gt;</p>
<p>			&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;<br />
			&lt;?php endwhile;<br />
			echo &quot;&lt;/ul&gt;&quot;;<br />
			}<br />
	} else echo &quot;&lt;span&gt;No related posts were found!&lt;/span&gt;&quot;;<br />
	$post = $backup;  // copy it back<br />
	wp_reset_query(); // to use the original query again<br />
echo &quot;&lt;/div&gt;&quot;;<br />
?&gt;</td>
</tr>
</table>
<p>code by <a href="http://blogohblog.com">blogohblog</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html&amp;title=Artikel+Terkait+berdasarkan+Tags+%28tanpa+Plugin%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html&amp;title=Artikel+Terkait+berdasarkan+Tags+%28tanpa+Plugin%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Artikel+Terkait+berdasarkan+Tags+%28tanpa+Plugin%29+-+http://b2l.me/s44pa+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html&amp;t=Artikel+Terkait+berdasarkan+Tags+%28tanpa+Plugin%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html&amp;n=Artikel+Terkait+berdasarkan+Tags+%28tanpa+Plugin%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=711&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/artikel-terkait-berdasarkan-tags-tanpa-plugin.html/feed</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
		<item>
		<title>Wordpress plugins untuk komentar (bag 2 &#8230;)</title>
		<link>http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html</link>
		<comments>http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html#comments</comments>
		<pubDate>Sun, 25 Oct 2009 16:09:42 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=564</guid>
		<description><![CDATA[Berikut dibawah ini beberapa plugin wordpress yang menyambung artikel dari postingan sebelumnya mengenai Wordpress Plugin Untuk Komentar (bag 1 &#8230;) :
6.  Reply-to
Plugin ini dikontribusikan oleh Iyus, berfungsi untuk me-replay komentar yang ada pada area komentar blog. Ketika diklik replay maka tugas plugin ini menyisipkan link kepada pemilik komentar di area komentar blog yang hendak [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Berikut dibawah ini beberapa plugin wordpress yang menyambung artikel dari postingan sebelumnya mengenai <a href="http://www.digituck.com/wordpress-plugins-untuk-komentar.html"><strong>Wordpress Plugin Untuk Komentar (bag 1 &#8230;)</strong></a> :</p>
<p>6.  Reply-to</p>
<blockquote><p>Plugin ini dikontribusikan oleh <a href="http://iyus.info/" target="_blank">Iyus</a>, berfungsi untuk me-replay komentar yang ada pada area komentar blog. Ketika diklik replay maka tugas plugin ini menyisipkan link kepada pemilik komentar di area komentar blog yang hendak dibalas (reply). Plugin ini dapat didownload di <a href="http://downloads.wordpress.org/plugin/reply-to.zip">http://downloads.wordpress.org/plugin/reply-to.zip</a>.</p></blockquote>
<p><center><br />
<img src="http://1.bp.blogspot.com/_a-0jHDitaRA/SuR3FGKiN6I/AAAAAAAAAGg/NKcrIBS31sk/s320/replay-to.png" alt="replay-to" title="replay-to" width="300" height="120" /><br />
</center></p>
<p>7.  Quote-comments</p>
<blockquote><p>Plugin ini dikontribusikan oleh <a href="http://noscope.com/journal/2008/12/quote-comments-javascript-plugin-for-wordpress" target="_blank">Joen Asmossen</a> berfungsi untuk menambah &#8220;quote&#8221; link pada setiap post comment blog. Tertarik memasang &#8220;quote pada setiap komentar di blog ! Silahkan download link plugin quote-comment di <a href="http://downloads.wordpress.org/plugin/quote-comments.zip">http://downloads.wordpress.org/plugin/quote-comments.zip</a>.</p></blockquote>
<p><center><br />
<img src="http://2.bp.blogspot.com/_a-0jHDitaRA/SuR3c3nEhUI/AAAAAAAAAGo/KMxCFrkVfU8/s320/quote-comments.JPG" alt="quote-comments" title="quote-comments" width="300" height="200" /><br />
</center></p>
<p>8. TinyMCEComments</p>
<blockquote><p>Plugin ini merubah kotak pengisian komentar menjadi WYSIWYG (What You See Is What You Get) Editor, namun toolbar yang disediakan tidak termasuk menambahkan gambar dan hanya tersedia untuk keperluan <em>writer</em><span id="more-564"></span>. Didistribusikan oleh <a href="http://mk.netgenes.org/my-plugins/mcecomments/" target="_blank">MK</a>, untuk dapat menggunakan plugin ini silahkan download disini <a href="http://downloads.wordpress.org/plugin/tinymcecomments.0.4.8.zip">http://downloads.wordpress.org/plugin/tinymcecomments.0.4.8.zip</a>.</p></blockquote>
<p><center><br />
<img src="http://1.bp.blogspot.com/_a-0jHDitaRA/SuR3sOXSeUI/AAAAAAAAAGw/HGxBS9kT1iI/s320/MCE.png" alt="MCE" title="MCE" width="300" height="153" /><br />
</center></p>
<p>9.  Subscribe-to-comments</p>
<blockquote><p>Mungkin plugin ini sudah sering kita lihat ketika kita sedang mengunjungi salah satu blog sahabat, dibawah tombol <em>submit comment</em> terdapat check list box yang bertuliskan &#8220;Notify me of followup comments via e-mail&#8221;. Yaa &#8230; fungsi dari plugin yang dikontribusikan oleh <a href="http://txfx.net/code/wordpress/subscribe-to-comments/">mark jaquith</a> ini memungkinkan para komentator blog untuk men-<em>subscribe</em> melalui layanan eMail. Download plugin disini <a href="http://downloads.wordpress.org/plugin/subscribe-to-comments.zip">http://downloads.wordpress.org/plugin/subscribe-to-comments.zip</a>.</p></blockquote>
<p><center><br />
<img src="http://1.bp.blogspot.com/_a-0jHDitaRA/SuR2Fysf_HI/AAAAAAAAAGQ/SoEYGaETF70/s320/subscribe.PNG" alt="subscribe" title="subscribe" width="300" height="57" /><br />
</center></p>
<p>10.  Tango-smileys-extended</p>
<blockquote><p>Plugin ini dikontribusikan oleh <a href="http://munashiku.slightofmind.net/">whesleymccabe</a> berfungsi untuk menambah icon smiley standar wordpress hingga mencapai 202 icon smiley. Plugin Tango Smileys Extended (TSE) ini menyediakan CTI (Click to Insert) interface yang memudahkan kita memilih icon smiley dengan hanya mengklik saat hendak ditambahkan ke kolom komentar blog. Pengaturan dari plugin ini terdapat di panel admin Setting &#8211; tango-smileys-extended. Plugin bisa di download di <a href="http://downloads.wordpress.org/plugin/tango-smileys-extended.2.5.6.1.zip">http://downloads.wordpress.org/plugin/tango-smileys-extended.2.5.6.1.zip</a>.</p></blockquote>
<p><center><br />
<img src="http://1.bp.blogspot.com/_a-0jHDitaRA/SuR2yb2NQYI/AAAAAAAAAGY/jZxUskFD41c/s320/tango-smileys-extended.png" alt="tango-smileys-extended" title="tango-smileys-extended" width="300" height="150" /><br />
</center></p>
<p align="justify">
wah &#8230; sepertinya masih banyak lagi plugin wordpress yang belum saya intip buat dituangkan di postingan <a href="http://www.digituck.com/wordpress-plugins-untuk-komentar.html">Wordpress plugins untuk komentar</a> ini. Diantaranya adalah <a href="http://downloads.wordpress.org/plugin/gravatar-signup.zip">wp-paginate</a> (memberikan nomor halaman pada komentar), <a href="http://downloads.wordpress.org/plugin/gravatar-signup.zip">gravatar-signup</a> (menyisipkan checkbox signup untuk gravatar ke dalam form komentar bagi komentator yang belum memiliki gravatar), <a href="http://downloads.wordpress.org/plugin/gregs-threaded-comment-numbering.1.2.6.zip">gregs-threaded-comment-numbering</a> (memberikan nomor untuk komentar secara berurut dan hirarki), atau mungkin sahabat punya saran lain untuk <em>plugin wordpress yang masih berhubungan dengan komentar atau memiliki fungsi yang berkaitan dengan komentar</em> ? Silahkan saling berbagi melalui komentar dibawah ini ! Terima kasih <img src='http://www.digituck.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html&amp;title=Wordpress+plugins+untuk+komentar+%28bag+2+...%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html&amp;title=Wordpress+plugins+untuk+komentar+%28bag+2+...%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Wordpress+plugins+untuk+komentar+%28bag+2+...%29+-+http://b2l.me/s4my5+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html&amp;t=Wordpress+plugins+untuk+komentar+%28bag+2+...%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html&amp;n=Wordpress+plugins+untuk+komentar+%28bag+2+...%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=564&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/wordpress-plugins-untuk-komentar-bag-2.html/feed</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Wordpress plugins untuk komentar (bag. 1 &#8230;)</title>
		<link>http://www.digituck.com/wordpress-plugins-untuk-komentar.html</link>
		<comments>http://www.digituck.com/wordpress-plugins-untuk-komentar.html#comments</comments>
		<pubDate>Fri, 02 Oct 2009 13:30:31 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=527</guid>
		<description><![CDATA[Asyik juga belajar wordpress blog, salah satu blog yang memiliki sistem CMS (Content Management System) yang dikembangkan oleh Matthew Charles Mullenweg, pria kelahiran Houston, Texas, Amerika Serikat,  yang lahir pada 11 Januari 1984. Wow … Umurnya masih muda yaa … ! dan ia berhasil menjadi pengusaha muda serta dinobatkan sebagai 16 dari 50 orang [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Asyik juga belajar wordpress blog, salah satu blog yang memiliki sistem CMS (Content Management System) yang dikembangkan oleh Matthew Charles Mullenweg, pria kelahiran Houston, Texas, Amerika Serikat,  yang lahir pada 11 Januari 1984. Wow … Umurnya masih muda yaa … ! dan ia berhasil menjadi pengusaha muda serta dinobatkan sebagai 16 dari 50 orang terpenting di Dunia Internet oleh PC World (Wikipedia). Ehm .. jadi bicara tentang <em>kang</em> Mullenweg, gak apa yaa … sekilas info sebagai acungan jempol buat <em>kang</em> Mullenweg atau buat sobat blog yang ingin lihat biografi  dari Matthew Charles Mullenweg  bisa dilihat disini <a href="http://id.wikipedia.org/wiki/Matthew_Charles_Mullenweg" target="_blank">http://id.wikipedia.org/wiki/Matthew_Charles_Mullenweg</a>. Okay &#8230; kita balik ke topik semula!</p>
<p align="justify">
Topik kali ini ingin berbagi sekitar wordpress plugins untuk komentar atau bisa disebut juga wordpress plugin yang berhubungan dengan sesi komentar pada blog. Memasang atau menginstall plugin untuk blog kita menjadi sebuah kebutuhan agar blog bisa terlihat interactive dan user friendly.  *Namun kita harus bisa memilah dan memilih plugin apa yang memang harus kita tambahkan sesuai kebutuhan ke dalam blog kita, jangan sampai space hosting kita luber akibat pemasangan banyak plugin. Yah … kalo space hosting besar silahkan saja! Kemudian muncul pertanyaan lagi, apa blog kita tidak berat dengan pemasangan banyak plugin ? kalo seperti itu pertanyaannya, gak ada salahnya kita mencoba pengalaman baru melalui sebuah blog dan terus bereksplorasi didalamnya dan jika ternyata blog kita berat load aksesnya, silahkan balik ketulisan saya yang ditandai bintang (*) <img src='http://www.digituck.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<h3>1.   Comment-Rating</h3>
<p align="justify">
<blockquote color="#FFFFFF"><p>Untuk memasang plugin pada wordpress hosting sudah saya singgung sebelumnya dan bisa dilihat disini <a href="http://www.digituck.com/navigasi-page-number-pada-wordpress.html" target="_blank">http://www.digituck.com/navigasi-page-number-pada-wordpress.html</a>. Comment-Rating plugin ini di kontribusikan oleh <a href="http://WealthyNetizen.com">Bobking</a>, berfungsi untuk voting komentar dengan mengklik sebuah image (picture) yang berlabelkan LIKE or DISLIKE.  Plugin bisa di download disini <a href="http://downloads.wordpress.org/plugin/comment-rating.2.7.2.zip" target="_blank">http://downloads.wordpress.org/plugin/comment-rating.2.7.2.zip</a>, untuk opsi atau pilihan pengaturannya bisa dilihat di panel admin, <strong>Setting – Comment Rating</strong>.
</p></blockquote>
<p><center><br />
<img src="http://2.bp.blogspot.com/_a-0jHDitaRA/StwyxI9n6DI/AAAAAAAAAF4/mkIxNDOC94U/s320/comment-rating.gif" alt="comment-rating" title="comment-rating" width="300" height="247" /><br />
</center></p>
<h3>2.	SI-Captcha-for-wordpress</h3>
<blockquote><p>Plugin Captcha (Completely Automated Public Turing test to tell Computers and Humans Apart) untuk wordpress ini dikontribusikan oleh <a href="http://www.642weather.com" target="_blank">Mike Challis</a>, berfungsi untuk menampilkan kode captcha di comment form, registration form, login atau kesemuanya yang dibuat untuk membedakan antara mesin (bot) dan manusia. Plugin bisa didownload disini <a href="http://downloads.wordpress.org/plugin/si-captcha-for-wordpress.zip">http://downloads.wordpress.org/plugin/si-captcha-for-wordpress.zip</a>, untuk pengaturan konfigurasinya dapat ditemukan di panel admin <strong>Plugins – SI Captcha Options</strong>.</p></blockquote>
<p><center><br />
<img src="http://1.bp.blogspot.com/_a-0jHDitaRA/StwxzSbluwI/AAAAAAAAAFw/8SLfjjxFoAo/s320/captcha-wordpress.gif" alt="captcha-wordpress" title="captcha-wordpress" width="300" height="277" /><br />
</center></p>
<h3>3.	Wp-ajax-edit-comments</h3>
<blockquote><p>Plugin dikontribusikan  oleh <a href="http://ajaydsouza.com" target="_blank">Ajay, Ronalfy</a>, berfungsi agar pengunjung yang memberikan komentar dapat mengedit dengan batas waktu yang ditentukan sebelum komentar tersebut masuk secara permanen.  Pengunjung blog yang memberikan komentar pun tidak perlu meminta admin melakukan koreksi <span id="more-527"></span>atas kesalahan komentar yang ia berikan karena admin memberikan batas waktu melalui pengaturan plugin tersebut untuk mengeditnya.  Setelah mengaktifkan plugin maka muncullah beberapa opsi pengaturan plugin tersebut yang dapat dilihat di panel admin <strong>Setting – Ajax Edit Comments</strong>. Plugin bisa didownload di <a href="http://downloads.wordpress.org/plugin/wp-ajax-edit-comments.zip">http://downloads.wordpress.org/plugin/wp-ajax-edit-comments.zip</a></p></blockquote>
<p><center><br />
<img src="http://1.bp.blogspot.com/_a-0jHDitaRA/StwzFbclnrI/AAAAAAAAAGI/cRx51zGFwsM/s320/wpAjaxEditComment.gif" alt="wpAjaxEditComment" title="wpAjaxEditComment" width="300" height="193" /><br />
</center></p>
<h3>4.	Akismet</h4>
<blockquote><p>Wah … ini seh dah gak asing lagi, siapa yang gak kenal dengan <s>“Aki Ismet”</s> Akismet salah satu plugin yang digarap oleh <em>kang</em> Mullenweg, dkk. Yang berfungsi untuk melindungi spam yang masuk melalui komentar blog. Plugin ini membutuhkan API key yang bisa didapatkan dengan cara mendaftarkan akun wordpress di <a href="http://wordpress.com/signup/" target="_blank">http://wordpress.com/signup/</a><br />
Plugin bisa didownload disini <a href="http://downloads.wordpress.org/plugin/akismet.zip ">http://downloads.wordpress.org/plugin/akismet.zip </a></p></blockquote>
<p><center><br />
<img src="http://3.bp.blogspot.com/_a-0jHDitaRA/StwxdJscVVI/AAAAAAAAAFo/7c2K-Mktuoo/s320/akismet.gif" alt="akismet" title="akismet" width="300" height="156"><br />
</center></p>
<h3>5.	Commentluv</h3>
<blockquote><p>Plugin yang ini juga gak asing lagi, banyak para pengguna blog menggunakannya sebagai sebuah penghargaan bagi pemberi komentar dimana si komentator dapat meninggalkan sebuah link dari postingan terbarunya di sesi komentar blog yang sedang dikunjunginya. Commentluv plugin ini dapat didownload melalui situs pembuatnya di <a href="http://comluv.com" target="_blank">http://comluv.com</a>  atau di ……. <a href="http://downloads.wordpress.org/plugin/commentluv.2.7.62.zip">http://downloads.wordpress.org/plugin/commentluv.2.7.62.zip</a>, untuk konfigurasinya bisa ditemukan di admin panel <strong>Setting – Commentluv</strong>.</p></blockquote>
<p><center><br />
<img src="http://3.bp.blogspot.com/_a-0jHDitaRA/StwzBm6ez2I/AAAAAAAAAGA/uEt8Y0SsfoE/s320/commentluv.jpg" alt="commentluv" title="commentluv" width="300" height="48" /><br />
</center></p>
<p>bersambung ya &#8230;..</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/wordpress-plugins-untuk-komentar.html&amp;title=Wordpress+plugins+untuk+komentar+%28bag.+1+...%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/wordpress-plugins-untuk-komentar.html&amp;title=Wordpress+plugins+untuk+komentar+%28bag.+1+...%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/wordpress-plugins-untuk-komentar.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Wordpress+plugins+untuk+komentar+%28bag.+1+...%29+-+http://b2l.me/s44pg+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/wordpress-plugins-untuk-komentar.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/wordpress-plugins-untuk-komentar.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/wordpress-plugins-untuk-komentar.html&amp;t=Wordpress+plugins+untuk+komentar+%28bag.+1+...%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/wordpress-plugins-untuk-komentar.html&amp;n=Wordpress+plugins+untuk+komentar+%28bag.+1+...%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=527&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/wordpress-plugins-untuk-komentar.html/feed</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Cara buat buku tamu tersembunyi dengan shoutmix</title>
		<link>http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html</link>
		<comments>http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 13:44:49 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=534</guid>
		<description><![CDATA[Beberapa hari yang lalu kawan saya sempat menanyakan, &#8220;Kenapa gak ada shoutmix di blog kamu sob ?&#8221; . Pada awalnya memang saya tidak memprioritaskan untuk shoutmix chat yang banyak difungsikan oleh kawan-kawan sebagai buku tamu di blog untuk dipasang diblog saya ini, dengan alasan yang sangat &#8220;sepele&#8221; yaitu untuk membatasi waktu loading  sekaligus mengurangi [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Beberapa hari yang lalu kawan saya sempat menanyakan, &#8220;Kenapa gak ada shoutmix di blog kamu sob ?&#8221; . Pada awalnya memang saya tidak memprioritaskan untuk shoutmix chat yang banyak difungsikan oleh kawan-kawan sebagai buku tamu di blog untuk dipasang diblog saya ini, dengan alasan yang sangat &#8220;sepele&#8221; yaitu untuk membatasi waktu <em>loading </em> sekaligus mengurangi akses loading yang terjadi akibat pengaksesan link dari luar (external) yang seringkali terasa lambat jika blog kita begitu banyak menggunakan aksesoris. Batasan waktu <em>loading</em> atau waktu pengaksesan suatu blog seringkali saya ukur dengan menggunakan akses internet melalui <em>dial-up</em> modem dengan batas kecepatan di angka 153Kbps, yang artinya dengan kecepatan yang hanya sebesar itu blog saya dapat dibuka atau diakses tidak terlalu lama atau terasa lambat untuk dibuka saat sedang browsing. Tadinya saya mau sediakan satu halaman (page) untuk buku tamu yang diberikan akses untuk komentarnya. ehm &#8230; tapi keren juga kalo ada shoutmix, mengingat blog ini tidak akan <em>hidup</em> tanpa kehadiran kawan-kawan blog diluar sana, namun tetap terus mencoba dan mencoba serta menghemat penggunaan aksesoris pada blog dengan alasan tersebut diatas. Sejak dulu aksesoris ini pun menjadi kebutuhan utama di beberapa blog saya yang menggunakan blogspot. </p>
<p align="justify">
Script Shoutmix yang saya pasang disini saya dapat saat blogwalking (didapat kira-kira beberapa bulan yang lalu namun maaf &#8230;. sumber dari script ini sendiri saya sampai tidak tahu <span id="more-534"></span>dan belum sempat tuk cari tahu karna ada tutorial di beberapa blog yang saya kunjungi tidak memberi link ke sumbernya, mungkin sobat bisa beri tahu dengan memberi komentar untuk postingan ini !).</p>
<p align="justify">
Berikut ini kode atau script cara buat buku tamu tersembunyi atau float (mengapung, melayang) dengan shoutmix yang saya taruh di blog Wordpress ini pada bagian <strong><em>header.php</em></strong> setelah tag &lt;body&gt;.</p>
<table width="100%" border="0">
<tr>
<td bgcolor="#222222"width="1%" bgcolor="blue"></td>
<td bgcolor="#ebebe4"><span><font color="222222" face="verdana"></font></span>
<p>&lt;style type=&quot;text/css&quot;&gt;<br />
  #gb{<br />
  position:fixed;<br />
<strong>  top:50px;</strong><br />
  z-index:+1000;<br />
  }<br />
  * html #gb{position:relative;}<br />
  .gbtab{<br />
  height:100px;<br />
  width:30px;<br />
  float:left;<br />
  cursor:pointer;<br />
  background:url(&#8220;<strong>DISINI LETAK <strong><em>URL</em></strong> SUMBER GAMBAR YANG DIGUNAKAN</strong>&#8220;) no-repeat;<br />
  }<br />
  .gbcontent{<br />
  float:left;<br />
  border:2px solid #A5BD51;<br />
  background:#F5F5F5;<br />
  padding:10px;<br />
  }<br />
  &lt;/style&gt;<br />
  &lt;script type=&quot;text/javascript&quot;&gt;<br />
  function showHideGB(){<br />
  var gb = document.getElementById(&quot;gb&quot;);<br />
  var w = gb.offsetWidth;<br />
  gb.opened ? moveGB(0, 30-w) : moveGB(20-w, 0);<br />
  gb.opened = !gb.opened;<br />
  }<br />
  function moveGB(x0, xf){<br />
  var gb = document.getElementById(&quot;gb&quot;);<br />
  var dx = Math.abs(x0-xf) &gt; 10 ? 5 : 1;<br />
  var dir = xf&gt;x0 ? 1 : -1;<br />
  var x = x0 + dx * dir;<br />
  gb.style.right = x.toString() + &quot;px&quot;;<br />
  if(x0!=xf){setTimeout(&quot;moveGB(&quot;+x+&quot;, &quot;+xf+&quot;)&quot;, 10);}<br />
  }<br />
  &lt;/script&gt;<br />
  &lt;div id=&quot;gb&quot;&gt;<br />
  &lt;div class=&quot;gbtab&quot; onclick=&quot;showHideGB()&quot;&gt; &lt;/div&gt;<br />
  &lt;div class=&quot;gbcontent&quot;&gt;<br />
<strong>  &lt;!&#8211; DISINI LETAK KODE ATAU SCRIPT SHOUTMIX !&#8211;&gt;</strong></p>
<p>&lt;div style=&quot;text-align:right&quot;&gt;<br />
  &lt;a href=&quot;javascript:showHideGB()&quot;&gt;<br />
  [close]<br />
  &lt;/a&gt;</p>
<p>&lt;/div&gt;<br />
  &lt;/div&gt;<br />
  &lt;/div&gt;<br />
  &lt;script type=&quot;text/javascript&quot;&gt;<br />
  var gb = document.getElementById(&quot;gb&quot;);<br />
  gb.style.right = (30-gb.offsetWidth).toString() + &quot;px&quot;;<br />
  &lt;/script&gt;&lt;/div&gt;&lt;/div&gt;</p>
</td>
</tr>
</table>
<p></p>
<p align="justify"><strong>  top:50px;</strong> &#8212; disini adalah jarak batas dari atas (top) sebesar 50px (silahkan sesuaikan!).</p>
<p align="justify">background:url(&#8220;<strong>DISINI LETAK <strong><em>URL</em></strong> SUMBER GAMBAR YANG DIGUNAKAN</strong>&#8220;) &#8212;- Silahkan buat gambar sendiri dengan ukuran height:100px width:30px menggunakan photoshop atau software lainnya dan taruh atau upload gambar tersebut hingga mengandung URL dan letakkan disini.</p>
<p align="justify"><strong>  &lt;!&#8211; DISINI LETAK KODE ATAU SCRIPT SHOUTMIX !&#8211;&gt;</strong> &#8212;- Hapus bagian ini dan gantikan atau letakkan shoutmix kode disini, silahkan registrasi lebih dahulu untuk memperoleh kodenya di <a href="http://shoutmix.com">shoutmix.com</a></p>
<p align="justify">kode atau script ini bisa juga diletakkan di Appearance &#8211; Widgets &#8211; Text pada admin panel wordpress, namun untuk yang berhosting di wordpress.com tidak bisa menggunakan cara ini, cara yang bisa digunakan adalah dengan memposting kode tersebut sebagai postingan baru dan atur tanggal postingannya dengan meletakkan di belakang (mundurkan tanggal posting) agar tidak masuk ke dalam postingan halaman utama (homepage).</p>
<p align="justify">Untuk penggunaan blog di blogspot kode diletakkan pada HTML Widget di Setting &#8211; Layout </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html&amp;title=Cara+buat+buku+tamu+tersembunyi+dengan+shoutmix" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html&amp;title=Cara+buat+buku+tamu+tersembunyi+dengan+shoutmix" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Cara+buat+buku+tamu+tersembunyi+dengan+shoutmix+-+http://b2l.me/s44s3+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html&amp;t=Cara+buat+buku+tamu+tersembunyi+dengan+shoutmix" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html&amp;n=Cara+buat+buku+tamu+tersembunyi+dengan+shoutmix&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=534&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/shoutmix-sebagai-buku-tamu-blog.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Cara Manual installasi wordpress (self host on 000webhost.com)</title>
		<link>http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html</link>
		<comments>http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html#comments</comments>
		<pubDate>Fri, 21 Aug 2009 05:00:13 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[ngeblog]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=769</guid>
		<description><![CDATA[Selain cara otomatis dengan menggunakan Fantastico untuk menginstal blog yang menggunakan wordpress, dapat juga dilakukan dengan menggunakan cara manual. Berikut ini adalah langkah-langkahnya :
1. Download file wordpress.
Agar dapat menggunakan wordpress pastinya kita membutuhkan file-file wordpress yang dapat di download di http://wordpress.org/latest.zip dengan versi terakhir yang disediakannya.
2. Buat Database MySQL pada CPanel 000webhost.com
Buatlah sebuah database pada [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Selain cara otomatis dengan menggunakan Fantastico untuk menginstal blog yang menggunakan wordpress, dapat juga dilakukan dengan menggunakan cara manual. Berikut ini adalah langkah-langkahnya :</p>
<p><strong>1. Download file wordpress.</strong></p>
<blockquote><p align="justify">Agar dapat menggunakan wordpress pastinya kita membutuhkan file-file wordpress yang dapat di download di <a href="http://wordpress.org/latest.zip">http://wordpress.org/latest.zip</a> dengan versi terakhir yang disediakannya.</p></blockquote>
<p><strong>2. Buat Database MySQL pada CPanel 000webhost.com</strong></p>
<blockquote><p align="justify">Buatlah sebuah database pada domain yang sebelumnya kita buat pada layanan domain gratis di co.cc. Lihat artikel sebelumnya di <a href="http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html">http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html</a>.</p>
<p><center><img src="http://4.bp.blogspot.com/_a-0jHDitaRA/S1K7BTu2gaI/AAAAAAAAAJk/fx0I03Ly5nk/s400/mysql000webhost.jpg" alt="nameserver" class="aligncenter size-medium wp-image-107" /></center></p>
<p align="justify">Pilih <em>picture icon</em> MySQL pada CPanel. Kemudian tentukan Nama Database dan User serta password (lihat contoh dibawah ini!).</p>
<p><center><img src="http://4.bp.blogspot.com/_a-0jHDitaRA/S1LAq9oQDfI/AAAAAAAAAJs/DOa8pdSeCEY/s400/mysql000webhost1.jpg" class="aligncenter size-medium wp-image-107" /></center></p>
<p align="justify">Setelah kita membuat Database pada MySQL di CPanel yang disediakan oleh Hosting gratis 000webhost maka kita akan mendapatkan informasi MySQL database yang kita buat. Perhatikan gambar berikut :<span id="more-769"></span></p>
<p><center><img src="http://2.bp.blogspot.com/_a-0jHDitaRA/S1LFeayUL_I/AAAAAAAAAJ0/R7-zhzjKvA8/s400/mysql000webhost2.jpg" class="aligncenter size-medium wp-image-107" /></center></p></blockquote>
<p><strong>3. Ubah file <em>wp-config.php</em></strong></p>
<blockquote><p align="justify">Extract file-file wordpress yang baru saja kita download pada langkah pertama. File wordpress terletak dalam 1 (satu) folder dengan nama <strong>wordpress</strong>. Carilah file <em>wp-config-sample.php</em> didalam folder wordpress tersebut kemudian copy paste file wp-config-sample.php (didalam folder wordpress itu juga). Kemudian <em>rename</em> atau ubah nama file tersebut menjadi <em>wp-config.php</em>.</p>
<p align="justify">Buka file tersebut dengan menggunakan Notepad++ (bisa didownload <em><a href="http://notepad-plus.sourceforge.net/uk/download.php">disini</a></em>!) kemudian edit pada bagian :</p>
<p><center><img src="http://1.bp.blogspot.com/_a-0jHDitaRA/S1LL-8j1aeI/AAAAAAAAAKE/QSqTgp-BB_E/s400/mysql000webhost3.jpg" class="aligncenter size-medium wp-image-107" /></p>
<p><strong>Menjadi</strong></p>
<p></center></p>
<p><center><img src="http://1.bp.blogspot.com/_a-0jHDitaRA/S1LNnY4PmdI/AAAAAAAAAKM/8BKEScM9D34/s400/mysql000webhost4.jpg" class="aligncenter size-medium wp-image-107" /></center></p></blockquote>
<p><strong>4. Upload File Wordpress ke hosting.</strong></p>
<blockquote><p align="justify">File wordpress siap untuk di Upload ke dalam hosting. Upload bisa menggunakan fitur File Manager di CPanel yang tersedia di 000webhost dan bisa juga menggunakan software filezilla (<a href="http://filezilla-project.org/download.php">download disini!</a>)atau yang sejenisnya.</p>
<p align="justify">
Untuk informasi mengenai File Upload Detail (FTP host name, FTP user name, FTP password) dapat dilihat pada CPanel <strong>View Account Detail</strong>.<br />
<center><img src="http://4.bp.blogspot.com/_a-0jHDitaRA/S1LRzLLjQeI/AAAAAAAAAKU/yzQWIoGtrLA/s400/mysql000webhost5.jpg" class="aligncenter size-medium wp-image-107" /></center></p></blockquote>
<p>Selesai &#8230; blog wordpress dengan hosting di 000webhost siap dikonfigurasi untuk pertama kalinya. Isilah title blog, email, dsb &#8230; dan selamat ber-blogging ria <img src='http://www.digituck.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html&amp;title=Cara+Manual+installasi+wordpress+%28self+host+on+000webhost.com%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html&amp;title=Cara+Manual+installasi+wordpress+%28self+host+on+000webhost.com%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Cara+Manual+installasi+wordpress+%28self+host+on+000webhost.com%29+-+http://b2l.me/s7a43+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html&amp;t=Cara+Manual+installasi+wordpress+%28self+host+on+000webhost.com%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html&amp;n=Cara+Manual+installasi+wordpress+%28self+host+on+000webhost.com%29&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=769&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hosting gratis di 000webhost dan domain gratis di co.cc</title>
		<link>http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html</link>
		<comments>http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html#comments</comments>
		<pubDate>Tue, 18 Aug 2009 05:18:45 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[ngeblog]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=753</guid>
		<description><![CDATA[Tutorial kali ini kita akan membuat blog wordpress dengan menggunakan layanan hosting gratis di 000webhost berikut domain gratis di co.cc. Langkah pertama yang harus dilakukan adalah mendaftarkan domain di co.cc dan tentukanlah sebuah penamaan domain yang nanti akan kita gunakan untuk blog (misal: www.nahinidia.co.cc). Cara mendaftarkannya bisa dilihat di postingan sebelumnya klik disini cara mendaftar [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Tutorial kali ini kita akan membuat blog wordpress dengan menggunakan layanan hosting gratis di 000webhost berikut domain gratis di co.cc. <em><strong>Langkah pertama</strong></em> yang harus dilakukan adalah mendaftarkan domain di co.cc dan tentukanlah sebuah penamaan domain yang nanti akan kita gunakan untuk blog (misal: www.nahinidia.co.cc). Cara mendaftarkannya bisa dilihat di postingan sebelumnya <a href="http://www.digituck.com/cara-buat-domain-co-cc.html">klik disini cara mendaftar di co.cc</a>. Namun perhatikan langkah terakhir pada postingan tersebut, saat mulai men-<em>setup</em> <strong>Manage Domain</strong>, jangan pilih no.2 <strong>Zone Records</strong>, <strong><em>pilihlah </em></strong>no.1 <strong>Name Server</strong> untuk nanti kita gunakan sebagai redirect pada hosting yang akan kita buat di <a href="http://000webhost.com">000webhost</a>.</p>
<p><center><img src="http://4.bp.blogspot.com/_UH7d_GhndIA/S1KWvv5xM8I/AAAAAAAAAFk/BUPXFbWd9uM/s320/nameserver1.jpg" alt="nameserver" class="aligncenter size-medium wp-image-107" /></center></p>
<p align="justify">
Kemudian ketikkan pada Name Server 1 : <strong>ns01.000webhost.com</strong> dan Name Server 2 : <strong>ns02.000webhost.com</strong>.</p>
<p><center><img src="http://4.bp.blogspot.com/_UH7d_GhndIA/S1KZCgiZvkI/AAAAAAAAAFs/RJu1yunMZZg/s320/nameserver2.jpg" alt="nameserver" class="aligncenter size-medium wp-image-107" /></center></p>
<p align="justify">
Nah &#8230; sampai sini kita sudah berhasil membuat sebuah nama yang disiapkan dalam domain co.cc , sekarang saatnya mendaftar di layanan hosting gratis 000webhost.com (<a href="http://www.000webhost.com/order.php">klik disini</a>).</p>
<p><center><img src="http://1.bp.blogspot.com/_UH7d_GhndIA/S1KeJPbkSJI/AAAAAAAAAF0/GQ_mch6xbZs/s320/000webhost.jpg" alt="nameserver" class="aligncenter size-medium wp-image-107" /></center></p>
<p><strong>I want to host my own domain</strong> Pilih dan ketikkan nama domain yang baru saja kita buat di domain co.cc. Isikan Nama dan Email serta password kemudian pilih Create My Account.</p>
<p align="justify">
Berikut ini adalah gambar CPanel yang tersedia di hosting gratis <a href="http://000webhost.com">000webhost</a>, klik gambar untuk memperbesar!.</p>
<p><center><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_UH7d_GhndIA/S1KkLDkteLI/AAAAAAAAAGE/f4GpnE28dcI/s1600-h/cpanel000webhost.jpg"><img src="http://2.bp.blogspot.com/_UH7d_GhndIA/S1KkLDkteLI/AAAAAAAAAGE/f4GpnE28dcI/s400/cpanel000webhost.jpg" alt="nameserver" class="aligncenter size-medium wp-image-107" /></a></center></p>
<p align="justify">
Langkah selanjutnya untuk mulai menginstall blog wordpress ke dalam layanan hosting gratis 000webhost bisa dilihat disini <a href="http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html">http://www.digituck.com/tutorial-instal-wordpress-dengan-cara-manual.html<br />
</a>.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html&amp;title=Hosting+gratis+di+000webhost+dan+domain+gratis+di+co.cc" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html&amp;title=Hosting+gratis+di+000webhost+dan+domain+gratis+di+co.cc" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Hosting+gratis+di+000webhost+dan+domain+gratis+di+co.cc+-+http://b2l.me/s65j2+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html&amp;t=Hosting+gratis+di+000webhost+dan+domain+gratis+di+co.cc" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html&amp;n=Hosting+gratis+di+000webhost+dan+domain+gratis+di+co.cc&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=753&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/cara-buat-blog-wordpress-dengan-hosting-dan-domain-gratis.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Navigasi Page Number pada wordpress</title>
		<link>http://www.digituck.com/navigasi-page-number-pada-wordpress.html</link>
		<comments>http://www.digituck.com/navigasi-page-number-pada-wordpress.html#comments</comments>
		<pubDate>Wed, 12 Aug 2009 01:05:11 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=152</guid>
		<description><![CDATA[Membuat page number untuk sebuah navigasi seolah menjadi keharusan bagi pemilik website. Page number adalah navigator yang sangat familiar dikalangan web log, kegunaannya sangatlah penting bagi mereka yang ingin membuat para pembaca betah berlama-lama di halaman situsnya. Pemetaan yang dilakukan oleh page number ditampilkan dibawah postingan artikel situs berupa nomor yang berurut berdasarkan postingan artikel [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Membuat page number untuk sebuah navigasi seolah menjadi keharusan bagi pemilik website. Page number adalah navigator yang sangat familiar dikalangan web log, kegunaannya sangatlah penting bagi mereka yang ingin membuat para pembaca betah berlama-lama di halaman situsnya. Pemetaan yang dilakukan oleh page number ditampilkan dibawah postingan artikel situs berupa nomor yang berurut berdasarkan postingan artikel yang ada hingga mengindexnya lebih rapih dan menjadikan halaman lebih nyaman untuk dikunjungi.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://i31.tinypic.com/2zp7a5d.jpg" alt="" width="177" height="35" /></p>
<p style="text-align: justify;">Untuk membuat page number seperti diatas dapat dilakukan dengan menambahkan plugin <em>wp-page-numbers</em> yang dapat didownload<span id="more-152"></span> di <a href="http://downloads.wordpress.org/plugin/wp-page-numbers.0.5.zip">http://downloads.wordpress.org/plugin/wp-page-numbers.0.5.zip</a>, kemudian seperti biasa upload-lah plugin tersebut kedalam wordpress folder anda. <em>&#8230;./wp-content/plugin</em>. Aktifkan plugin tersebut kemudian lakukan sedikit perubahan pada <em>index.php</em> yang terdapat pada theme file wordpress anda. Carilah kode berikut ini :</p>
<table border="0" width="100%">
<tbody>
<tr>
<td width="1%" bgcolor="#222222"></td>
<td bgcolor="#ebebe4"><span><span style="font-family: verdana; color: #222222;"> </span></span>&lt;?php next_posts_link(&#8216;&amp;laquo; Previous Entries&#8217;) ?&gt;<br />
&lt;?php previous_posts_link(&#8216;Next Entries &amp;raquo;&#8217;) ?&gt;</td>
</tr>
</tbody>
</table>
<p>replace kode tersebut dengan &#8230;</p>
<table border="0" width="100%">
<tbody>
<tr>
<td width="1%" bgcolor="#222222"></td>
<td bgcolor="#ebebe4">&lt;?php if(function_exists(&#8216;wp_page_numbers&#8217;)) { wp_page_numbers(); } ?&gt;</td>
</tr>
</tbody>
</table>
<p>Page number telah berhasil menjadi bagian dari navigasi situs anda. Kemudian jika ingin mengganti style dari plugin tersebut, atur dan pilihlah dari menu Settings &#8211; Page Numbers sesuai yang diinginkan dari berbagai macam style yang telah tersedia.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://i27.tinypic.com/2aadjwy.jpg" alt="" width="328" height="184" /></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/navigasi-page-number-pada-wordpress.html&amp;title=Navigasi+Page+Number+pada+wordpress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/navigasi-page-number-pada-wordpress.html&amp;title=Navigasi+Page+Number+pada+wordpress" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/navigasi-page-number-pada-wordpress.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Navigasi+Page+Number+pada+wordpress+-+http://b2l.me/s46rk+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/navigasi-page-number-pada-wordpress.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/navigasi-page-number-pada-wordpress.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/navigasi-page-number-pada-wordpress.html&amp;t=Navigasi+Page+Number+pada+wordpress" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/navigasi-page-number-pada-wordpress.html&amp;n=Navigasi+Page+Number+pada+wordpress&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=152&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/navigasi-page-number-pada-wordpress.html/feed</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Membuat Artikel terkait berdasarkan Kategori</title>
		<link>http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html</link>
		<comments>http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html#comments</comments>
		<pubDate>Mon, 10 Aug 2009 01:53:46 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=145</guid>
		<description><![CDATA[Menampilkan artikel terkait pada setiap postingan adalah suatu keharusan agar blog milik kita menjadi lebih friendly dan memudahkan para pembacanya. Artikel terkait sangatlah penting agar pembaca bisa &#8220;berlama-lama ria&#8221; nongkrong di website kita. Dalam tutorial kali ini mengenai pembelajaran menggunakan wordpress saya ingin berbagi pengalaman dalam hal membuat artikel terkait di Wordpress.
Pertama yang harus dilakukan [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Menampilkan artikel terkait pada setiap postingan adalah suatu keharusan agar blog milik kita menjadi lebih friendly dan memudahkan para pembacanya. Artikel terkait sangatlah penting agar pembaca bisa &#8220;berlama-lama ria&#8221; <em>nongkrong</em> di website kita. Dalam tutorial kali ini mengenai pembelajaran menggunakan wordpress saya ingin berbagi pengalaman dalam hal membuat artikel terkait di Wordpress.</p>
<p style="text-align: justify;">Pertama yang harus dilakukan adalah mengunduh plugin di <a href="http://downloads.wordpress.org/plugin/related-posts-by-category.zip">http://downloads.wordpress.org/plugin/related-posts-by-category.zip</a>, kemudian upload plugin tersebut (related-posts-by-category) ke dalam wordpress folder anda <em>../wp-content/plugins/</em>. <span id="more-145"></span>Setelah Plugin selesai diupload kemudian aktifkan plugin tersebut dan masuk ke menu editor dalam dashboard admin wordpress Appearance &#8211; Editor, lalu pilihlah single.php untuk melakukan penambahan kode program.</p>
<p style="text-align: justify;">Copy Paste kode program berikut ini, gunakanlah&lt;div&gt; agar ter-blok dengan rapih.</p>
<table style="text-align: justify;" border="0" width="100%">
<tbody>
<tr>
<td width="2%" bgcolor="#23282d"></td>
<td bgcolor="#cd8b63"><code>&lt;?php<br />
related_posts_by_category(<br />
array(<br />
'orderby' =&gt; 'post_date',<br />
'order'   =&gt; 'DESC',<br />
'limit'   =&gt; 5,<br />
'echo'    =&gt; true,<br />
'before'  =&gt; '&lt;li&gt;',<br />
'inside'  =&gt; '&amp;raquo; ',<br />
'outside' =&gt; '',<br />
'after'   =&gt; '&lt;/li&gt;',<br />
'rel'     =&gt; 'nofollow',<br />
'type'     =&gt; 'post',<br />
'message' =&gt; 'no matches'<br />
)<br />
);<br />
?&gt;</code></td>
</tr>
</tbody>
</table>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html&amp;title=Membuat+Artikel+terkait+berdasarkan+Kategori" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html&amp;title=Membuat+Artikel+terkait+berdasarkan+Kategori" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Membuat+Artikel+terkait+berdasarkan+Kategori+-+http://b2l.me/s454d+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html&amp;t=Membuat+Artikel+terkait+berdasarkan+Kategori" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html&amp;n=Membuat+Artikel+terkait+berdasarkan+Kategori&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=145&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/membuat-artikel-terkait-berdasarkan-kategori.html/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Memaksimalkan SEO melalui struktur permalink</title>
		<link>http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html</link>
		<comments>http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html#comments</comments>
		<pubDate>Fri, 07 Aug 2009 14:31:45 +0000</pubDate>
		<dc:creator>digituck</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Belajar Wordpress]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Tutorial Blog]]></category>

		<guid isPermaLink="false">http://www.digituck.com/?p=127</guid>
		<description><![CDATA[Seperti apakah struktur permalink yang bagus untuk digunakan pada web anda ? Dari sekian banyak yang saya jelajahi melalui pencarian cara penggunaan struktur permalink yang baik, akhirnya saya dapat menyimpulkan bahwa struktur permalink yang baik adalah seperti terlihat dibawah ini :




http://www.websiteku.com/contoh.html



Struktur permalink diatas sangatlah familiar hingga memudahkan mesin pencari untuk mengindeksnya dan direkomendasikan oleh banyak [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Seperti apakah struktur permalink yang bagus untuk digunakan pada web anda ? Dari sekian banyak yang saya jelajahi melalui pencarian cara penggunaan struktur permalink yang baik, akhirnya saya dapat menyimpulkan bahwa struktur permalink yang baik adalah seperti terlihat dibawah ini :</p>
<table style="text-align: justify;" border="0" width="100%">
<tbody>
<tr>
<td width="1%" bgcolor="#222222"></td>
<td bgcolor="#d0a2a2">http://www.websiteku.com/contoh.html</td>
</tr>
</tbody>
</table>
<p style="text-align: justify;">Struktur permalink diatas sangatlah familiar hingga memudahkan mesin pencari untuk mengindeksnya dan direkomendasikan oleh banyak blog master. Saran dari penggunaan struktur permalink seperti itu kebanyakan berasal dari web yang lumayan memiliki traffic tinggi <span id="more-127"></span>yang dalam beberapa tutorial SEO-nya mereka sangat menyarankan penggunaan permalink tersebut.</p>
<p style="text-align: justify;">Bagaimanakah cara mengubah struktur tersebut jika web anda menggunakan wordpress ? Berikut ini adalah tutorial untuk mengubah struktur permalink pada wordpress.</p>
<ul>
<li>Login terlebih dahulu ke      dalam Dashboard admin wordpress.</li>
<li>Kemudian pilih Setting.</li>
<li>Pilih Permalink.</li>
<li>Didalamnya terdapat Common      Settings sebagai pilihan untuk menentukan struktur permalink, dalam hal      ini pilihlah Custom Structure.</li>
<li>Ubahlah kotak teks isian dari Custom Structure menjadi<br />
<table border="0" width="30%">
<tbody>
<tr>
<td bgcolor="#d0a2a2"><span><span style="font-family: verdana; color: #222222;">%postname%.html </span></span></td>
</tr>
</tbody>
</table>
</li>
</ul>
<p>Perhatikan gambar berikut ini :</p>
<p><img src="http://www.digituck.com/wp-content/uploads/2009/08/permalink.png" alt="" width="493" height="210" /></p>
<p>Selamat mencoba! <img src='http://www.digituck.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-love">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://delicious.com/post?url=http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html&amp;title=Memaksimalkan+SEO+melalui+struktur+permalink" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html&amp;title=Memaksimalkan+SEO+melalui+struktur+permalink" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Memaksimalkan+SEO+melalui+struktur+permalink+-+http://b2l.me/s6zp8+(via+@digituck)&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html&amp;t=Memaksimalkan+SEO+melalui+struktur+permalink" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html&amp;n=Memaksimalkan+SEO+melalui+struktur+permalink&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

<img src="http://www.digituck.com/?ak_action=api_record_view&id=127&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.digituck.com/memaksimalkan-seo-melalui-struktur-permalink.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>
