How to make changes to wordpress without them going live immediately?

I am trying to make very quick and easy css changes to a website that is wordpress site. I dont want make them while the site is live. is there a way to make them locally and then upload? what do you recommend?

people tell me that doing it locally is a big hassle because of the way the server is. is there a plug in that will let me make changes without them going live?

Read More

Thank you very much in advanced…sorry this is my first time with wordpress

Related posts

Leave a Reply

2 comments

  1. What you can do is the following:

    a) Install wamp server on your pc. (google where to get it)

    b) Install a version of wordpress locally – in case you already have a version online that want to work on you will have to transfer it locallly. check this: http://codex.wordpress.org/Moving_WordPress

    Actually you are saving your wordpress database, download all the files inside your wampwww folder and then import the database through phpmyadmin to your local wamp server and change a couple of options in the db > options table (there are two options to change the website that is loaded so that it looks locally)

    c) Your work on the offline version. I assume you mean that you need only styling, so you can edit your style.css file. As soon as you are pleased with it, you just upload it on your web server replacing your old file!

  2. same as @scooterlord .

    You can use nginx and php-cgi too on your Windows if ya wanna move to nginx in future.

    Just install wamp then then download WordPress version and then download your theme or plugin on which ya wanna work.

    So ya will able to work offline and its not effect ur website.

    yeah. I ya download db from ur site u need to change url of wordpress in DB.

    u can do it by using phpmyadmin.

    or by using These lines in your themes function file.:

     update_option('siteurl','http://your.site.url:port/yourblog');
     update_option('home','http://your.site.url:port/yourblog');