質問編集履歴
1
あ
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,9 +11,12 @@
|
|
11
11
|
define('WP_SITEURL','http://example.com');
|
12
12
|
```
|
13
13
|
|
14
|
-
|
14
|
+
# functions.php
|
15
15
|
|
16
16
|
```
|
17
17
|
update_option( 'siteurl', 'http://example.com' );
|
18
18
|
update_option( 'home', 'http://example.com' );
|
19
|
-
```
|
19
|
+
```
|
20
|
+
|
21
|
+
# 参考
|
22
|
+
https://codex.wordpress.org/Changing_The_Site_URL
|