Update (front post): Fix parsing issue
This commit is contained in:
@@ -17,12 +17,10 @@ public static function handle($post)
|
||||
{
|
||||
$keyword = $post->main_keyword;
|
||||
|
||||
if (is_array($post->keywords))
|
||||
{
|
||||
if (count($post->keywords) > 0)
|
||||
{
|
||||
$keyword .= " " . implode(" ", $post->keywords);
|
||||
}
|
||||
if (is_array($post->keywords)) {
|
||||
if (count($post->keywords) > 0) {
|
||||
$keyword .= ' '.implode(' ', $post->keywords);
|
||||
}
|
||||
}
|
||||
|
||||
$title = $post->short_title;
|
||||
|
||||
Reference in New Issue
Block a user