質問編集履歴
3
ソースコードの修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,10 +6,10 @@
|
|
6
6
|
どうも初歩なところで詰まってしまっています。。
|
7
7
|
|
8
8
|
```ここに言語を入力
|
9
|
-
<?php
|
9
|
+
<?php if(is_page(‘blog’)): ?>
|
10
|
-
<h2><?php echo longTextCutter(70, get_the_title()); ?></h2>
|
10
|
+
<h2 class="tl"><?php echo longTextCutter(70, get_the_title()); ?></h2>
|
11
11
|
<?php else: ?>
|
12
|
-
<h4><?php echo longTextCutter(70, get_the_title()); ?></h4>
|
12
|
+
<h4 class="tl"><?php echo longTextCutter(70, get_the_title()); ?></h4>
|
13
13
|
<?php endif; ?>
|
14
14
|
```
|
15
15
|
|
@@ -37,7 +37,7 @@
|
|
37
37
|
<p class="f_box f_center">
|
38
38
|
<time class="date gf"><?php echo the_time("Y.m.d"); ?></time> <span class="category"><?php echo $category; ?></span>
|
39
39
|
</p>
|
40
|
-
<?php
|
40
|
+
<?php if(is_page(‘blog’)): ?>
|
41
41
|
<h2 class="tl"><?php echo longTextCutter(70, get_the_title()); ?></h2>
|
42
42
|
<?php else: ?>
|
43
43
|
<h4 class="tl"><?php echo longTextCutter(70, get_the_title()); ?></h4>
|
2
文言の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
<?php endif; ?>
|
14
14
|
```
|
15
15
|
|
16
|
-
以下がエラー内容です
|
16
|
+
■以下がエラー内容です
|
17
17
|
```ここに言語を入力
|
18
18
|
Parse error
|
19
19
|
: syntax error, unexpected ':' in
|
@@ -23,4 +23,29 @@
|
|
23
23
|
```
|
24
24
|
|
25
25
|
|
26
|
+
■こちらが問題部分のソースコード前後になります。
|
27
|
+
```ここに言語を入力
|
28
|
+
<?php
|
29
|
+
global $img;
|
30
|
+
global $category;
|
31
|
+
global $index;
|
32
|
+
$class = ($index ? 'w25s' : 'w45');
|
33
|
+
?>
|
34
|
+
<li class="col f_box <?php echo $class; ?>">
|
35
|
+
<a href="<?php the_permalink(); ?>">
|
36
|
+
<div class="imgBlogBox f_box f_center blog <?php echo $index; ?>"><p class="zoom trans"><?php echo $img; ?></p></div>
|
37
|
+
<p class="f_box f_center">
|
38
|
+
<time class="date gf"><?php echo the_time("Y.m.d"); ?></time> <span class="category"><?php echo $category; ?></span>
|
39
|
+
</p>
|
40
|
+
<?php if($str == 'blog'): ?>
|
41
|
+
<h2 class="tl"><?php echo longTextCutter(70, get_the_title()); ?></h2>
|
42
|
+
<?php else: ?>
|
43
|
+
<h4 class="tl"><?php echo longTextCutter(70, get_the_title()); ?></h4>
|
44
|
+
<?php endif; ?>
|
45
|
+
</a>
|
46
|
+
</li>
|
47
|
+
```
|
48
|
+
|
49
|
+
|
50
|
+
|
26
51
|
皆様のご教示のほどお願いいたします。
|
1
シンタックスエラーの内容追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -13,4 +13,14 @@
|
|
13
13
|
<?php endif; ?>
|
14
14
|
```
|
15
15
|
|
16
|
+
以下がエラー内容です
|
17
|
+
```ここに言語を入力
|
18
|
+
Parse error
|
19
|
+
: syntax error, unexpected ':' in
|
20
|
+
/home/sgdev2/dev.xbiz.jp/public_html/test/wp-content/themes/test-thme/parts-blog.php
|
21
|
+
on line
|
22
|
+
13
|
23
|
+
```
|
24
|
+
|
25
|
+
|
16
26
|
皆様のご教示のほどお願いいたします。
|