Im Blog WordPress Bits weist Leonid Mamchenkov auf die Möglichkeit hin ein eigenes wp-content/install.php File anzulegen und Kontrolle über den Installationsprozess von WordPress zu bekommen.
I’ve heard many people who want to start with “General” category, not “Uncategorized”. And if you are making lots of WordPress-based web sites, than first post, page, and comment probably don’t make much sense – you remove them right after the installation. If you are WordPress installations for corporate clients, you often want to lose the default links (as much as you love WordPress developers, links to their blogs don’t make much sense from your clients’ web sites).
wp_install_defaults() is the place to do all that. Copy it to your custom install.php . If you want to start with a clean WordPress installation – remove all lines in that function. Just delete them. So that you have only the function definition and nothing else. Otherwise, add and edit the lines accordingly. Most of the stuff you see in WordPress’ function definition are SQL statements anyway. So you can put your own ones here
Sehr, sehr cooll. Man sollte sich doch häufiger die Zeit nehmen und mal in den Sourcecode schauen.