In the Dashboard's Settings > General, there's a 'Site Address (URL)' field, but it seems simply changing it there isn't enough.
My site URL/wp ⇒ WordPress files are located here.
1. Simply move the `index.php` file from inside the installation folder to the site address location.
2. Change the path to WordPress from within the moved `index.php` file.
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
↓
require( dirname( __FILE__ ) . '/wp/wp-blog-header.php' );RECOMMENDED WORDPRESS BOOKS
I think reading books is helpful, but I really feel that you learn more deeply when you actually implement things.
I recommend reading books on WordPress itself and on PHP.
Understanding HTML and CSS will broaden your capabilities, but the nice thing about WordPress is that you can manage the design by relying on templates.
The Easiest WordPress Introduction Classroom (Japanese) Paperback
WordPress basics. It carefully explains everything from installation.
There are many books available, so any of them would be fine, but I chose this one because it was recently published and the author is beautiful.
For those seriously developing. Real-world examples are introduced, so it can also be used for brainstorming ideas.
📦