回答編集履歴
2
コードの修正
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
```PHP
|
6
6
|
|
7
|
-
function
|
7
|
+
function set_email() {
|
8
8
|
|
9
9
|
if ( is_page( 'create-account' ) ) {
|
10
10
|
|
@@ -26,4 +26,6 @@
|
|
26
26
|
|
27
27
|
}
|
28
28
|
|
29
|
+
add_action( 'wp_footer', 'set_email');
|
30
|
+
|
29
31
|
```
|
1
コードの修正
test
CHANGED
@@ -6,26 +6,24 @@
|
|
6
6
|
|
7
7
|
function add_input_value() {
|
8
8
|
|
9
|
-
|
9
|
+
if ( is_page( 'create-account' ) ) {
|
10
10
|
|
11
|
-
|
11
|
+
if ( !empty($_SESSION["email_address"] )) {
|
12
12
|
|
13
|
-
|
13
|
+
?>
|
14
14
|
|
15
|
-
|
15
|
+
<script type="text/javascript">
|
16
16
|
|
17
|
-
|
17
|
+
document.getElementById('user_email').value = '<?php echo $_SESSION["email_address"]; ?>'
|
18
18
|
|
19
|
-
|
19
|
+
</script>
|
20
20
|
|
21
|
-
|
21
|
+
<?php
|
22
22
|
|
23
|
-
|
23
|
+
}
|
24
24
|
|
25
|
-
|
25
|
+
}
|
26
26
|
|
27
27
|
}
|
28
28
|
|
29
|
-
add_action( 'wp_footer', 'add_input_value');
|
30
|
-
|
31
29
|
```
|