mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
Bugfix: only replace the first instance when inserting the estimated reading time
This commit is contained in:
parent
e55308f50a
commit
27b4d57c46
1 changed files with 5 additions and 4 deletions
|
@ -23,11 +23,12 @@ register_module([
|
|||
$insert = "<small><em>{$reading_time[0]} minute read</em></small>";
|
||||
|
||||
// TODO: Create a canonical way to insert something just below the header - this might be tough though 'cause the that isn't handled by the page_renderer though
|
||||
$replace_count = 1; // Without a temp variable we get "only variables can be passed by reference", ref PHP 7.4.6
|
||||
$parts["{content}"] = str_replace(
|
||||
"</h1>", "</h1><p class='system-text-insert readingtime-estimate'>$insert</p>",
|
||||
$insert = "\n\t\t\t<p class='system-text-insert readingtime-estimate'>$insert</p>";
|
||||
$parts["{content}"] = substr_replace(
|
||||
$parts["{content}"],
|
||||
$replace_count
|
||||
"</h1>$insert",
|
||||
strpos($parts["{content}"], "</h1>"),
|
||||
5
|
||||
);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue