New answers tagged local-installation
0
You may want to give my WP Migrate DB plugin a try. It exports your database and does all the find & replaces you need at the same time. Then you jump into phpMyAdmin to import it.
I recently released a pro version that allows you to push or pull the database from your WordPress dashboard. No phpMyAdmin needed. Big time saver.
4
You could use slugs instead of IDs.
Taken from the Starkers theme (add it to your functions.php):
add_filter( 'body_class', 'add_slug_to_body_class' );
function add_slug_to_body_class( $classes ) {
global $post;
if( is_home() ) {
$key = array_search( 'blog', $classes );
if($key > -1) {
...
Top 50 recent answers are included
