Blog
Sep 21, 2008 | Featured, Wordpress

Hello!, what’s up people!
For the last few months, I have been working on several project*. Since i have a free damn weekend free time after doing my web programming assignment, i create a new theme. I plan to release it for free and called it Fame.
Read the rest of this entry »
Blog
Sep 1, 2008 | Design, Featured

It is september again. New month and new freebies.
Download : 1024×768, 1280×800, 1280×900, 1600×1200
Blog
Aug 10, 2008 | Featured, Wordpress

I upgraded from 2.5.1 to 2.6 last month. It is a good version and better than previous one. They fixed the Custom field problem and I am happy.
I discovered some new bugs in this version. Where are page template drop down in WordPress 2.6? Ya, the page template section is missing. I couldn’t find it whenever i try to create new page with custom template. Weird @-@
So, i just play with the wp-admin dir and try search the problem. What make this thing happen?
I figured out the edit-page-form.php in 2.6 is not the same as the 2.5. They add some new function to it.
The new 2.6 :

2.5

*click for bigger image
<?php if ( 0 != count( get_page_templates() ) ) { ?>
If it not equal to zero(the number of page template in you theme dir), it will automatically appear. But the page template drop-down still not there . What i can see is they add function. It is totally different.
Solution :
I made some modification to edit-page-form.php by adding some value.

- Go to wp-admin dir. search for
edit-page-form.php
- Open it with text editor.
- Go to line 265. replace 0 with greater value like 110.
- Save it.
Refresh post page. The Page Template drop down should automatically appear now.