Merge pull request #2141 from roots/unescape-titles
Unescape post titles
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<article @php post_class() @endphp>
|
<article @php post_class() @endphp>
|
||||||
<header>
|
<header>
|
||||||
<h2 class="entry-title"><a href="{{ get_permalink() }}">{{ get_the_title() }}</a></h2>
|
<h2 class="entry-title"><a href="{{ get_permalink() }}">{!! get_the_title() !!}</a></h2>
|
||||||
@if (get_post_type() === 'post')
|
@if (get_post_type() === 'post')
|
||||||
@include('partials/entry-meta')
|
@include('partials/entry-meta')
|
||||||
@endif
|
@endif
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<article @php post_class() @endphp>
|
<article @php post_class() @endphp>
|
||||||
<header>
|
<header>
|
||||||
<h1 class="entry-title">{{ get_the_title() }}</h1>
|
<h1 class="entry-title">{!! get_the_title() !!}</h1>
|
||||||
@include('partials/entry-meta')
|
@include('partials/entry-meta')
|
||||||
</header>
|
</header>
|
||||||
<div class="entry-content">
|
<div class="entry-content">
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<article @php post_class() @endphp>
|
<article @php post_class() @endphp>
|
||||||
<header>
|
<header>
|
||||||
<h2 class="entry-title"><a href="{{ get_permalink() }}">{{ get_the_title() }}</a></h2>
|
<h2 class="entry-title"><a href="{{ get_permalink() }}">{!! get_the_title() !!}</a></h2>
|
||||||
@include('partials/entry-meta')
|
@include('partials/entry-meta')
|
||||||
</header>
|
</header>
|
||||||
<div class="entry-summary">
|
<div class="entry-summary">
|
||||||
|
|||||||
Reference in New Issue
Block a user