File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 41
41
"Parent Page" : " الصفحة الأب" ,
42
42
"Page Order" : " ترتيب الصفحة" ,
43
43
"Post Slug" : " الرابط المختصر" ,
44
- "Write an excerpt for your post" : " اكتب ملخص للمقالة"
44
+ "Write an excerpt for your post" : " اكتب ملخص للمقالة" ,
45
+ "Show All posts in" : " هرض كافة المثالات في"
45
46
}
Original file line number Diff line number Diff line change 41
41
"Parent Page" : " Parent Page" ,
42
42
"Page Order" : " Page Order" ,
43
43
"Post Slug" : " Post Slug" ,
44
- "Write an excerpt for your post" : " Write an excerpt for your pos"
44
+ "Write an excerpt for your post" : " Write an excerpt for your post" ,
45
+ "Show All posts in" : " Show All posts in"
45
46
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public function render()
21
21
}
22
22
seo ()
23
23
->title ($ this ->page ->title )
24
- ->description ($ this ->page ->description )
24
+ ->description ($ this ->page ->description ?? '' )
25
25
->twitter ();
26
26
27
27
return view (app ('theme ' ).'.page ' )
Original file line number Diff line number Diff line change @@ -19,9 +19,10 @@ public function render()
19
19
if (! $ this ->post ->getMedia ('posts ' )->isEmpty ()) {
20
20
seo ()->image ($ this ->post ->getFirstMediaUrl ('posts ' ));
21
21
}
22
+
22
23
seo ()
23
24
->title ($ this ->post ->title )
24
- ->description ($ this ->post ->description )
25
+ ->description ($ this ->post ->description ?? '' )
25
26
->twitter ();
26
27
27
28
return view (app ('theme ' ).'.post ' )
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public function render()
22
22
{
23
23
seo ()
24
24
->title ($ this ->tag ->name )
25
- ->description ('Show All posts in ' .$ this ->tag ->name )
25
+ ->description (__ ( 'Show All posts in ' ). ' ' .$ this ->tag ->name )
26
26
->twitter ();
27
27
28
28
return view (app ('theme ' ).'.category ' )
You can’t perform that action at this time.
0 commit comments