views:

7

answers:

1

On the Wordpress dashborad page for writing a new/editing an existing post, is it possible to have the 'Publish' module appear at the bottom right (be the last module on the right) as a default, without having to drag and drop it there?

I'm okay with changing the code in the core files, I just need to know how to do it ?

A: 

I'm almost sure these configurations are stored in the database. Check the wp_options table on your database.

Once you find it, you should just use a simple SQL script for each new installation of WordPress.

EDIT: This link came in pretty handy as it describes every table on your db:

wp_options - The Options set under the Administration > Settings panel are stored in the wp_options table. See Option Reference for option_name and default values.

I'm not sure if wp_options is the table where this is specifically stored, but you'll probably find it somewhere in your DB.

Fernando