Skip to content

Commit

Permalink
Merge pull request #24 from szepeviktor/patch-1
Browse files Browse the repository at this point in the history
Fix title retrieval
  • Loading branch information
rasmuswinter authored Jun 21, 2023
2 parents 2525b43 + 0e7253b commit a6cee26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WordpressTheme.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function siteTitle()

public function htmlTitle()
{
return wp_title('«', true, 'right') . ' ' . $this->siteTitle();
return wp_title('«', false, 'right') . ' ' . $this->siteTitle();
}

/**
Expand Down

0 comments on commit a6cee26

Please sign in to comment.