WordPress – page content not updating in front-end

I have a problem with a WordPress site.

When I am trying to update page content or edit css file, changes not appearing in front-end. It looks like cache problem, but I empty my cache every time and nothing helps. I should wait some hours or try another browser to see changes that I’ve made.

Read More

I am not using any cahce plugins and don’t know why content changes take so long to go live.

Please help me.

Related posts

3 comments

  1. I am facing this kind of issues these days too, what I do is, in the

          wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer );
    

    in $ver i place php function time() it changes after every second, I think this technique is best for development purpose.

    so the final enque will be

         wp_enqueue_script( 'myscript', filesourse/file.js, array(''), time(), true );
    

    for the style you can also use time() at the $ver position

       wp_enqueue_style( 'mystyle', filesourse/file.css, array(''), time(), 'all' );
    

    Hope this will work for you too,

  2. If you have cache folder in your rootfolder rename it and try,because your all site configuration store that cache folder in root folder.

Comments are closed.