
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.


























