Can’t access WP site over WiFi network

yes, it because wordpress use the server address from database get_option(‘siteurl’) and get_option(‘home’), so if you access the wordpress from IP Address the assets (js and css) will still loaded from localhost/wp/ that mean from 127.0.0.1 not the 10.0.0.1 the simple way to get dynamic url for your wordpress is defining the site_url and home_url … Read more

Local PC cache stays filled with old WordPress Site data

Unsurprisingly so since you tell browser to cache everything for 1 month by default (ExpiresDefault “access plus 1 month”). You should limit long caching times to static resources and leave pages served by WP out of it. My go to resource for .htaccess configuration is HTML5 Boilerplate. It works with WP nicely and correctly excludes … Read more

Relative links stop working after moving wordpress site from hosting to localhost

If you are in https://localhost/cc and use a relative lnk with href=”https://wordpress.stackexchange.com/login” (relative to current domain/site), the browser (not WordPress) will take you to https://localhost/login; if the link is href=”https://wordpress.stackexchange.com/questions/267557/login” (relative to current path) the browser will take you to https://localhost/cc/login. Relative links work like that, nothing to do with WordPress. That is why many … Read more

Hide a subdirectory on my website hosting

If understood correctly, you’ll have to follow this Codex instructions: Using a pre-existing subdirectory install. If you already have WordPress installed in its own folder (i.e. http://example.com/wordpress) then the steps are as follows: If that’s your case, you’ll learn how to make WP work as if it were on the root, even being installed on … Read more

add_rewrite_rule to remove /category/ from permalink

I believe the rewrite rule your wanting to alter is this category/(.+?)/?$ index.php?category_name=$matches[1] category to do what you want it should just be a case of adding the following rewrite rule in your functions.php add_rewrite_rule(‘(.+?)/?$’, ‘index.php?category_name=$matches[1]’, ‘top’); this should work but might conflict with other rules so that will be worth checking.

Strange behaviour of is_user_logged_in() and get_current_user_id()

I’ve run your code and it works fine to me except for the inclusion in file-access.php: require_once($_SERVER[‘DOCUMENT_ROOT’].’/wp-load.php’); enable debug to see if there are errors depending on other issues and not regarding these specific code lines. But.. as per WP documentation: actions reference the earlier action hook where the authentication process is completed and cookies … Read more

How to rename index.php to home.php

how to correct example.com/home.php? First, put things back the way you found them. Both index.php and home.php are reserved file names. And index.php is special not only to WordPress but to the server itself– look into DirectoryIndex. You should not be manipulating them in this way. Unless you really know what you are doing you … Read more

wordpress blog displaying blank pages [closed]

That’s odd. Perhaps you need to clear your cache or maybe your server takes a while to respond to a changed .htaccess file. (What web host are you using?) Is there another .htaccess file in the WP folder which might have been modified? Or maybe you’ve made other changes??? By the way, why are you … Read more