About

Planet Bloggerian adalah aggregator daripada tulisan-tulisan members Forum Bloggerian.

Subscribe

Untuk mendaftar, menghubungi kami, kasih kritik, saran dll, silakan isi Contact Form.

Desclaimer

The intellectual property of the content that is found in this website belongs exclusively to the origin authors.

Statistics

Bloggerian Top Hits

Feeds

3661 items (3657 unread) in 34 feeds

Aban

  • Child Theming: An Introduction to WordPress Theme Development with WordPress Child Themes

    Posted: February 25th, 2011, 9:06am WIT by Aban Nesta
    TagsWordpress  

    Attending Wordcamp Indonesia 2011 has given me a lot of knowledge. Moch. Zamroni from WP Charity who was the speaker on that event, had opened my eyes that there is smart way to modify wordpress themes. Child theming method gives benefits to a wordpress site developer just like me. So, when I have my part on Friday IT (My office’s Internal Upgrading Class), I decide to share it. Here’s presentation I made for that event…

    Child Theming: An Introduction to WordPress Theme Development with WordPress Child Themes View more presentations from Aban Nesta

    Permalink for 'Aban/2011/02/25/Child_Theming__An_Introduction_to_WordPress_Theme_Development_with_WordPress_Child_Themes'
  • No Matt? We Have Karim!

    Posted: January 28th, 2011, 7:06pm WIT by Aban Nesta
    TagsWordpress  

    As it confirmed before that Matt Mullenweg is unfortunately not coming to Wordcamp Indonesia 2011, I honestly little bit disappointed, but then I realize that meeting Matt is not the main reason for attending Wordcamp Indonesia. I’m still maintaining my excitement though (not to mention that I designed the logo :p)

    So, tomorrow we’ll meet at Wordcamp Indonesia 2011 which is held in Bandung. I’m looking forward to seeing many wordpress users, advanced users, developers and Karim Osman. Karim? Who?

    Well, Karim Osman is…

    A dancer, a teacher, a writer, the Dutch-Egyptian-Chinese living in the Netherlands has found that he?s in love deeply with web development. He is currently joining Automattic as a Happiness Engineer. That means, by the time you meet him, you can learn a lot about communication and relationship between developers and users, courses in web
    development many WordPress developers may have found to be difficult to deal with. Discussing what?s happening in and what?s coming to WordPress may also interest you. ~Wordcamp Indonesia

    Karim will present a keynote there and Jeffikus from Woo Themes has stated that Karim is such a great guy since he met him at Wordcamp Spain.

    So, what can I say? See you there….

    Permalink for 'Aban/2011/01/28/No_Matt__We_Have_Karim_'
  • Wordcamp Indonesia 2011, I’m Coming…

    Posted: November 5th, 2010, 11:40pm WIT by Aban Nesta
    TagsWordpress  

    Wordcamp Indonesia

    30 Januari lalu, Wordcamp Indonesia 2010 digelar. Banyak hal yang didapat dari perhelatan rutin tahunan tersebut. Tunggu, what the hell is Wordcamp?

    WordCamp is a conference that focuses on everything WordPress. WordCamps are informal, community-organized events that are put together by WordPress users like you. Everyone from casual users to core developers participate, share ideas, and get to know each other. WordCamps are open to WordPress.com and WordPress.org users alike.
    wordcamp.org


    Intinya adalah, Wordcamp adalah gathering akbar para pengguna WordPress, entah itu wordpress.com ataupun wordpress.org dan sudah digelar di berbagai belahan penjuru dunia.
    Di Indonesia sendiri, Wordcamp sudah diadakan 2 kali (2009 dan 2010), dan tanggal 29-30 Januari 2011 mendatang (di Bumi Kahyangan Jatinangor, Bandung) adalah pelaksanaan yang ketiga.

    Pada Wordcamp Indonesia 2011 kali ini, saya mencoba peruntungan dalam kontes desain logonya dan masuk 4 besar nominator.

    Kandidat Logo Wordcamp 2011

    Alhamdulillah, logo buatan saya dipilih sebagai logo resmi di Wordcamp Indonesia 2011 nanti.

    Makna filosofis pada logo yang saya buat:

    • Logo WordPress dilekatkan dengan mata kujang melambangkan Host Wordcampid yang akan diselenggarakan di tatar parahyangan (Kujang merupakan identitas parahyangan).
    • Mata kujang memiliki 3 lingkaran (yang biasa terdapat dalam sebilah kujang) melambangkan wordcamp yang sudah ketiga kalinya diselenggarakan di Indonesia.
    • Tulisan dengan huruf sunda yang terdapat dalam mata kujang bertuliskan “Wordcamp Indonesia 2011?.
    • Sekilas, logo ini seperti acungan jempol yang melambangkan arti positif dari keikutsertaan pada Wordcamp Indonesia.
    • Mengenai warna, saya mengambil warna yang di-state WordPress sebagai warna official mereka:
      Blue
      Pantone 7468
      CMYK 97, 44, 26, 3
      Hex #21759b
      RGB 33, 117, 155

      dan
      Orange
      Pantone 1665
      CMYK 6, 86, 100, 1
      Hex #d54e21
      RGB 213, 78, 33
    • So, I’m looking forward to seeing you at Wordcamp Indonesia 2011!!!

    Permalink for 'Aban/2010/11/05/Wordcamp_Indonesia_2011__I%e2%80%99m_Coming%e2%80%a6'
  • Bermain dengan Style Message Box

    Posted: August 18th, 2010, 4:43am WIT by Aban Nesta
    TagsWordpress  

    Di era web 2.0 sekarang, memunculkan pesan kepada pengguna setelah melakukan satu eksekusi adalah satu hal yang diperlukan. Para developer wordpress plugin juga semestinya melakukan hal ini terhadap plugin yang dikembangkannya.

    Di dasbor wordpress sering kita jumpai informasi yang muncul di atas halaman (contohnya: informasi mengenai adanya wordpress versi terbaru). Bagi para developer, hal ini berguna untuk meng-generate error atau pesan lainnya tanpa perlu membuat style tambahan.

    Output untuk message box pada wordpress di-generate sebagai berikut:

    <div id="message" class="updated">
      <p>
        Output
      </p>
    </div>
    

    Message yang di-generate untuk keperluan (misalnya) plugin, tentu memuat informasi yang berbeda. Untuk itu, wordpress sendiri memiliki beberapa class stylesheet untuk message box tersebut. Berikut adalah beberapa class yang bisa digunakan…

    <div id="message" class="updated">...</div>
    

    Class Updated

    <div id="message" class="error">...</div>
    

    Class Error

    <div id="message" class="updated highlight">...</div>
    

    Class Highlight

    <div id="message" class="updated below-h2">...</div>
    

    Class Below

    Catatan:
    Sebaiknya tidak menggunakan format sendiri, karena secara psikologis, dengan menggunakan format yang terintegarsi dengan wordpress akan membuat plugin yang dikembangkan menjadi lebih “terpercaya”.

    Sumber: wpengineer

    Permalink for 'Aban/2010/08/18/Bermain_dengan_Style_Message_Box'
  • Mencegah Klien Mengubah Theme WordPress

    Posted: August 4th, 2010, 4:07pm WIT by Aban Nesta
    TagsWordpress  

    Ketika kita menggunakan wordpress untuk proyek-proyek pembangunan website, terkadang kita menjumpai klien (yang notabene “awam”) yang begitu “kreatif” mengeksplorasi halaman wordpress admin, sehingga tanpa sengaja mengganti/switch theme menjadi theme default tanpa dia sadari.

    Untuk mencegah kasus seperti itu, sedikit tips dari soulsizzle.com bisa menjadi alternatif pemecahannya.

    Tambahkan kode berikut pada file functions.php anda:

    add_action('admin_init', 'remove_theme_menus');
    function remove_theme_menus() {
    	global $submenu;	
    
    	unset($submenu['themes.php'][5]);
    	unset($submenu['themes.php'][15]);
    }
    
    Permalink for 'Aban/2010/08/04/Mencegah_Klien_Mengubah_Theme_WordPress'
  • Memodifikasi Tampilan Plugin WP-PageNavi pada WordPress

    Posted: July 16th, 2010, 10:33am WIT by Aban Nesta
    TagsWordpress  

    Bagi mereka yang bosan sama tampilan navigasi default wordpress yang hanya menampilkan Older Entries dan Newer Entries, sudah tentu mereka bakal menambahkan plugin WP-PageNavi yang membuat tampilan navigasi paging menjadi lebih variatif dan user-friendly.

    Page Navi Default

    Tampilan PageNavi default tersebut bisa dimodifikasi agar lebih atraktif dengan cara mengedit file pagenavi-css.css sesuai keinginan kita. Saya pun mencoba memodifikasinya, terinspirasi oleh navigasi paging yang ada di halaman eRepublik (game online berbasis web yang aktif saya mainkan 2 tahun terakhir).

    Pertama-tama, Anda membutuhkan 4 file gambar untuk first, last, previous dan next link-nya.

    Unggahlah keempat gambar tadi ke server hosting Anda.

    Selanjutnya, ubahlah setting plugin PageNavi yang bisa diakses dari Settings > PageNavi. Ubahlah value yang ada pada Text For First Page, Text For Last Page, Text For Previous Page dan Text For Next Page dengan kode html untuk memanggil gambar. Misalnya, untuk mengganti value yang ada pada Text For First Page, gunakan tag berikut:

    <img src="http://domainanda.com/images/first.png" />
    

    PageNavi Setting

    Note: Sesuaikan url gambar dengan tempat directory kemana kita mengunggah gambar-gambar tadi.

    Terakhir, Sesuaikan tampilan dengan sedikit memodifikasi file pagenavi-css.css dan jadilah tampilan navigasi paging yang kita inginkan.

    PageNavi

    Permalink for 'Aban/2010/07/16/Memodifikasi_Tampilan_Plugin_WP_PageNavi_pada_WordPress'
  • Membuat Modul Pencarian WordPress Berlaku untuk Postingan Saja

    Posted: July 15th, 2010, 11:06am WIT by Aban Nesta
    TagsWordpress  

    Ketika pengunjung blog melakukan pencarian melalui search form, kemungkinan besar apa yang mereka cari adalah postingan blog, bukan content static page. Modul pencarian WordPress secara otomatis akan meng-query keduanya, baik postingan maupun static page.

    Untuk membuat hasil pencarian hanya berlaku terhadap postingan saja, Anda bisa menambahkan sedikit code pada file functions.php Anda.

    function SearchFilter($query) {
        if ($query->is_search) {
            $query->set('post_type', 'post');
        }
        return $query;
    }
    
    add_filter('pre_get_posts','SearchFilter');
    

    Dengan tambahan code di atas, maka engine akan melakukan pencarian untuk postingan (post_type) saja. Jika Anda membutuhkan hal yang sebaliknya, Anda hanya perlu mengubah post_type menjadi page.

    Sumber:
    bavotasan

    Permalink for 'Aban/2010/07/15/Membuat_Modul_Pencarian_WordPress_Berlaku_untuk_Postingan_Saja'
  • Membuat Halaman Maintenance untuk Blog Wordpress

    Posted: February 24th, 2010, 5:59am WIT by Aban Nesta
    TagsWordpress  

    Selain update blog, terkadang kita harus sedikit terjun membenahi masalah “teknis” misalnya pasang theme baru, upgrade wordpress (secara manual, bukan via fantastico) atau mungkin sedikit hard coding. Ketika kita melakukan hal teknis tersebut tentunya halaman depan sebaiknya kita “tutup”, bisa dengan membuat file index.html dengan tulisan “Under Maintenance”. Tapi tentu hal ini sedikit banyak akan membuat ribet karena kita harus mengarahkan url ke index.php.

    Ada satu trik agar kita bisa dengan tenang “mengobrak-abrik” blog kita sementara halaman depan tetap manteng di halaman maintenance, yaitu dengan memanfaatkan konfigurasi halaman .httaccess.

    1. Buatlah satu halaman maintenance, dan namai, let’s say, dengan maintenance.html
    2. Cari file .htaccess, biasanya terletak di halaman root. Buat file backup-nya.
    3. Buka file .htaccess untuk diedit.
    4. Gantilah dengan code seperti di bawah ini:
      RewriteEngine on
      RewriteCond %{REQUEST_URI} !/maintenance.html$
      RewriteCond %{REMOTE_ADDR} !^123\.123\.123\.123
      RewriteRule $ /maintenance.html [R=302,L]
    5. Gantilah 123\.123\.123\.123 di line 3 dengan IP address anda (Masa gak tau? :P). Pastikanlah anda memakai syntax yang sama lalu Save
    6. Sekarang, pengunjung blog anda akan di-redirect ke halaman maintenance anda.
    7. Ketika “pekerjaan” anda kelar, anda bisa mengembalikan file .httaccess seperti semula.

    File .httaccess adalah file yang berisi perintah-perintah untuk webserver Apache. Dalam kasus ini, .httaccess mengontrol agar pengunjung yang berasal dari IP address yang berbeda dengan 123.123.123.123 akan di-redirect ke file maintenance.html.

    Dengan mengganti 123.123.123.123 dengan IP address anda membuat anda bisa tetap mem-browse halaman blog anda secara normal ketika yang lain di-redirect ke halaman maintenance.html.

    Permalink for 'Aban/2010/02/24/Membuat_Halaman_Maintenance_untuk_Blog_Wordpress'
  • Menghilangkan Error Message Update Otomatis yang Gagal

    Posted: January 14th, 2010, 1:20pm WIT by Aban Nesta
    TagsWordpress  

    Salah satu pengalaman berharga saya dapatkan ketika saya mencoba meng-upgrade wordpress klien. Seperti biasa, ketika ada wordpress versi terbaru, maka alert “WordPress 2.9.1 is available! Please update now.” akan terpampang di bagian atas dashboard. Tak ayal lagi, saya hajarlah itu link “Please update now”, tapi apa nyana, update otomatis gagal. Saya terpaksa melakukan proses upgrade secara manual via ftp. Tapi alert berubah menjadi “An automated WordPress update has failed to complete – please attempt the update again now.

    Sebenarnya tidak ada yang salah dengan proses upgrade, dengan kata lain, proses upgrade telah berjalan. Namun tetap saja alert tersebut menjadi sedemikian annoying (apalagi untuk klien).

    Solusinya ternyata cukup sederhana:

    1. Hapus folder upgrade yang ada di directory wp-content
    2. Hapus juga file .maintenance yang ada di root directory

    dan hilanglah alert tersebut… BTW, blog saya ternyata masih pake wordpress 2.9. Ntar aja ah update-nya hehehe….

    Permalink for 'Aban/2010/01/14/Menghilangkan_Error_Message_Update_Otomatis_yang_Gagal'
  • Menambah (Gr)Avatar Default pada Wordpress

    Posted: December 9th, 2009, 1:54am WIT by Aban Nesta
    TagsWordpress  

    Gravatar adalah satu servis yang memungkinkan munculnya avatar kita ketika memberikan komentar di blog orang lain (yang menggunakan servis gravatar juga tentunya). Sejak wordpress 2.7 diluncurkan, servis ini pun sudah terintegrasi dengan engine wordpress, sehingga kita tidak perlu meng-install plugin gravatar ataupun menambah tag gravatar secara manual. Lantas, bagaimana “nasib” para pengunjung yang tidak terdaftar di gravatar? WordPress menyediakan beberapa alternatif yang bisa dipilih untuk digunakan para pengunjung yang belum terdaftar.

    gravatar

    Namun, dengan pilihan gambar yang itu-itu saja, tentu akan membosankan. Seringkali kita menginginkan adanya gambar unik untuk gravatar default tersebut. Well, berikut saya paparkan hack untuk menambah gravatar default pada wordpress.

    Yang harus anda lakukan adalah menambah function pada function.php dan unggahlah file gambar yang akan dijadikan gravatar default (sebaiknya dimensi gambarnya tidak lebih dari 60 x 60 pixel).

    /**
     * add a default-gravatar to options
     */
    if ( !function_exists('fb_addgravatar') ) {
    	function fb_addgravatar( $avatar_defaults ) {
    		$myavatar = get_bloginfo('template_directory') . '/images/glassess.gif';
    		$avatar_defaults[$myavatar] = 'Kacamata';
    
    		return $avatar_defaults;
    	}
    
    	add_filter( 'avatar_defaults', 'fb_addgravatar' );
    }
    

    Ketika theme anda aktif, maka anda akan melihat gravatar default bertambah.

    addgravatar

    Permalink for 'Aban/2009/12/09/Menambah__Gr_Avatar_Default_pada_Wordpress'
  • Copyright Dinamis pada Footer Wordpress

    Posted: December 2nd, 2009, 12:51pm WIT by Aban Nesta
    TagsWordpress  

    Udah masuk bulan Desember, sebentar lagi tahun 2010 tiba (udah mau Piala Dunia, euy!). Buat para pengguna wordpress yang terbiasa meng-update footer tahun copyright (Contoh: © 2006 – 2009 SitusAnda.Com) secara manual, berikut sedikit tips untuk menghindari kebiasaan itu:

    <p>copyright &copy; 2006 - <?php echo date('Y'); ?> SitusAnda.Com</p>

    Dengan menggunakan date(’Y'), Anda tidak perlu susah-susah meng-update tahun copyright setiap pergantian tahun (kecuali Anda mengganti theme yang digunakan tentunya)

    Permalink for 'Aban/2009/12/02/Copyright_Dinamis_pada_Footer_Wordpress'
  • Mengemas Ulang Wordpress

    Posted: November 27th, 2009, 12:06pm WIT by Aban Nesta
    TagsWordpress  

    Banyak kerjaan kantor yang saya solusikan dengan menggunakan WordPress, menyusul banyaknya permintaan pembuatan website “sederhana”, gampang dipake dan tentunya personalized. Untuk hal yang terakhir, ada satu trik yang sering saya gunakan, yakni “mengemas ulang” area admin wordpress, dalam hal ini mengubah logo di halaman login dan logo di sudut kanan atas.

    Saya gak begitu tau apa trik seperti ini menyalahi aturan atau tidak, yang jelas ketika saya coba cari tau di sini, tidak ada pernyataan yang secara eksplisit menjelaskan hal tersebut (mungkin karena keterbatasan kemampuan bahasa Inggris saya), CMIIW. So, meskipun saya mengganti kedua logo wordpress tadi, tapi saya tidak mengubah link ke wordpress-nya.

    Kembali ke soal logo tadi, beberapa yang saya ubah antara lain:

    /wp-admin/images/logo-login.gif
    /wp-admin/images/logo-ghost.png
    /wp-admin/css/login.css

    logo-login.gif
    Ganti image ini dengan logo baru (biasanya berupa logo instansi klien). Image ini normalnya berukuran 310×70 pixel. Jadi kalo logo baru ukuran dimensinya sama, kita tidak perlu menyunting file login.css.

    login.css
    Ubahlah atribut h1 a sesuai dengan logo baru (jika ukuran dimensinya berbeda dengan file aslinya).

    h1 a {
    	background: url(../images/logo-login.gif) no-repeat top center;
    	width: 326px;
    	height: 67px;
    	text-indent: -9999px;
    	overflow: hidden;
    	padding-bottom: 15px;
    	display: block;
    }
    

    logo-ghost.png
    Seperti halnya logo-login.gif tadi, gantilah image ini dengan logo baru. Untuk yang satu ini, sebaiknya dimensinya disamakan dengan file aslinya (25x25). Jika ada masalah dengan image tranparency, kita bisa memberi warna background dengan #464646.

    Permalink for 'Aban/2009/11/27/Mengemas_Ulang_Wordpress'

Firman

  • Archive page, done!

    Posted: September 8th, 2008, 2:04am WIT by Firman Firdaus
    TagsWordpress  
    I just finished tweaking my archive page, using this plugin. But there is no styling yet.
    Permalink for 'Firman/2008/09/08/Archive_page__done_'
  • Premium Wordpress theme shouldn’t be existed?

    Posted: September 7th, 2008, 12:45pm WIT by Firman Firdaus
    TagsWordpress  
    Good point of view. Wordpress is an open source community. And so is Linux. Imagine the outrage if I modified Ubuntu or Fedora and then sold my new hybrid Linux distro for $97 along with a license preventing further development. And that outrage would be absolutely justified. Modifying open source code with the purpose of selling [...]
    Permalink for 'Firman/2008/09/07/Premium_Wordpress_theme_shouldn%e2%80%99t_be_existed_'
  • Blog Friendster beralih ke Wordpress

    Posted: September 6th, 2008, 12:46pm WIT by Firman Firdaus
    TagsWordpress  
    MASIH ada yang pakai Friendster? Friendster.com upgrade it user blogging platform to WordPress now served as replacement of MovableType ! This is definitely a great move and allowed users to have more control of their friendster blog’s backend. I believe friendster using WPMU as the base as supporting multi million user for using new platform. Via [...]
    Permalink for 'Firman/2008/09/06/Blog_Friendster_beralih_ke_Wordpress'
  • Minor Incident, a neat Wordpress theme

    Posted: September 4th, 2008, 1:14pm WIT by Firman Firdaus
    TagsWordpress  
    SECONDS before I shut down my computer, my eyes stumbled upon a blog entry by the most respected Indonesia webdesigner (berlebihan ya? :P). Finally, this guy released his first public Wordpress theme for free. Yes, for free. Tanpa berpanjang kali lebar sama dengan luas, silakan download di sini. Update: I’m using it for my other blog. Yay!
    Permalink for 'Firman/2008/09/04/Minor_Incident__a_neat_Wordpress_theme'
  • Refreshed Wordpress Theme

    Posted: August 2nd, 2008, 2:20pm WIT by Firman Firdaus
    TagsWordpress  
    Refreshed theme now has a demo page. Click here to test it. THIS is my first Wp-theme public release. Actually, I only did the architectural design and my friend, Wordpress guru Jauhari, did the coding. So, here it is… Refreshed Wp theme. Refreshed is a one column, white-spaced, and clean design with a lifestream feature outside the regular [...]
    Permalink for 'Firman/2008/08/02/Refreshed_Wordpress_Theme'

Thomas

  • WordPress 2.6 Features

    Posted: June 16th, 2008, 4:06pm WIT by Thomas Arie
    TagsWordpress  

    The coming WordPress 2.6 (scheduled to be released on August 7th, 2008, or July 7th, 2008) will have more features. Most of you probably heard that about the probably-most-well-known Post Revisions feature. But, there are some other features that should be highlighted. Here are some of them I find (using WordPress from SVN, revision 8094):

    Post Revisions

    WP 2.6: Post Revisions

    Using this, our WordPress will save a copy of our post everytime you edit it. We can take benefit when we want to revert our post. We can also compare or show diffs from two revisions. Wiki users should be familiar with this. This Post Revisions feature will be shipped and activated by default. If we think that we do not need this, we can deactivate it easily. Just add define('WP_POST_REVISIONS','0'); in our configuration file (wp-config.php). More info about Post Revisions.

    Google Gears supports

    WP 2.6: Google Gears support

    Description from ticket #6965 tells about this:

    First run. Support for Google Gears managed offline storage. The patch adds all static files used in the admin interface to a single offline storage. That speeds up page loading a lot, as it serves virtually all requests for static files from the computer’s HD instead of the network. So instead of 50-60 requests to the server on some pages, there are only 2-3.

    There will be a new small link on the top-right navigation. It says “Speed up!“. Learn more about Google Gears.

    Identicon, MonsterID, and Wavatar support

    wp26-avatars

    WordPress 2.5 already has built-in Gravatar support, and we have option wether we want to display it or not, and also set the maximum rating. Automattic already acquired Gravatar in October 2007, and they added interesting features on it in last April: Identicon, MonsterID and Wavatar. If you’re using that by installing plugins, they will be shipped in the packaged.

    Press This

    Actually, this is not new, but should be featured. Take a look at WordPress Codex for more details. In short:

    WordPress makes it easy to quickly add links and information to your site through the use of a bookmarklet called Press It. A bookmarklet looks like a link in your Favorites, Bookmarks, or Links list but it is much more powerful. It adds the capability to quickly create WordPress post entries on the fly while working on the Internet.

    It seems that this feature called Press This, but the Codec says “Press It”. Okey, don’t get confused. It seems “Press This” is the correct one.

    What else?

    • wp-config.php can now be located one-level up from the rest of your WP install if you want to move it out of your doc root. (source)
    • Shift-click to select a range of checkboxes — Everyone loves how you can click a checkbox in gmail and then shift click another checkbox farther down the line to select all the checkboxes in between. (source)
    • Word Count — Add word count thingummy to the Write Post screen. Should work in Visual view, Code view and tinyMCE-just-plain-off view (source)
    Permalink for 'Thomas/2008/06/16/WordPress_2.6_Features'
  • What you will see in WordPress 2.5?

    Posted: March 18th, 2008, 3:18am WIT
    TagsWordpress  
    Today, WordPress 2.5 Release Candidate 1 was released. I did not wait any longer to upgrade, everything seems nice! You can see some new features offered by the coming 2.5 version at WordPress Development Blog. There are some nice features come to my attention. What are they? Here are some.
    Permalink for 'Thomas/2008/03/18/What_you_will_see_in_WordPress_2.5_'
  • What you will see in WordPress 2.5?

    Posted: March 18th, 2008, 2:18am WIT by Thomas Arie
    TagsWordpress  
    Today, WordPress 2.5 Release Candidate 1 was released. I did not wait any longer to upgrade, everything seems nice! You can see some new features offered by the coming 2.5 version at WordPress Development Blog. There are some nice features come to my attention. What are they? Here are some.
    Permalink for 'Thomas/2008/03/18/What_you_will_see_in_WordPress_2.5_'
  • WordPress 2.3.3: Urgent security release

    Posted: February 5th, 2008, 10:34pm WIT
    TagsWordpress  
    There is a small but urgent security release for WordPress 2.3.2. If you use XML-RPC gateway for your WordPress, upgrade now. What's the issue?
    Permalink for 'Thomas/2008/02/05/WordPress_2.3.3__Urgent_security_release'
  • Upload More Files to WordPress.com

    Posted: January 21st, 2008, 9:00pm WIT
    TagsWordpress  
    A good news for WordPress.com users. If you have account at WordPress.com, you do not need to worry again about the upload space now. Right, now you can store files up to 3,000 mb.
    Permalink for 'Thomas/2008/01/21/Upload_More_Files_to_WordPress.com'
  • No WordPress 2.4

    Posted: January 10th, 2008, 2:18am WIT
    TagsWordpress  
    Previously, I mentioned some new/improvements what would be offered in WordPress 2.4. The developer team decided not to release the 2.4 version. Before this decision, WordPress 2.4 was scheduled to be released on January 2008. (see its roadmap) Later, we...
    Permalink for 'Thomas/2008/01/10/No_WordPress_2.4'
  • Administration Panel Preview for WordPress 2.4

    Posted: January 4th, 2008, 2:52pm WIT
    TagsWordpress  
    I was curious about the new admin interface for WordPress 2.4. And since I also use WordPress (not here, but for my other blog), I took the risk to upgrade my WordPress from the Subversion. The upgrade process went smoothly, and finally I can see the new admin interface. Well, because it's still in the development process, we can not have whole features yet.
    Permalink for 'Thomas/2008/01/04/Administration_Panel_Preview_for_WordPress_2.4'
  • FAlbum and Flickr Photo Album plugins for WordPress

    Posted: December 27th, 2007, 10:26am WIT
    TagsWordpress  
    When I started to my other blog powered by WordPress, I wanted to have a section to display my Flickr photos. I decided to use FAlbum plugin.
    Permalink for 'Thomas/2007/12/27/FAlbum_and_Flickr_Photo_Album_plugins_for_WordPress'

Firman

  • Violetion!

    Posted: December 26th, 2007, 1:29am WIT by Firman Firdaus
    TagsWordpress  

    Violetion is a play on word of violation. This is my 200-something redesign/realign ) . Why Violetion? Firstly, because violet is my wife’s colour. This is the way I express my love to her. No need to wait until 14 February to do this.

    Secondly, Violetion is a “violation” in (blog) design. There is no blogtitle, no blog description, no menu navigation on top. It’s just the post, with a huge title to give you a shock therapy.

    Since I consider it as beta version, you still can find some issues like Archives page and RSS link. But, I will manage that right away.

    Well, anyway, thanks to Anima for doing the code (with a dirty tweak from me, bro, sorry for this ) )

    Permalink for 'Firman/2007/12/26/Violetion_'

Thomas

Firman