このコードは、WordPress レイアウトで画像を出力するために使用する必要があります。
<?php
$temp_content = explode(" ",substr(strip_tags(get_the_content()),0,175));
$temp_content[(count($temp_content)-1)] = '';
$new_content = implode(" ",$temp_content);
?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('home-post',
array('alt' => 'post image',
'class' => '', 'title' =>
'<div class="home_post_content">
<h4>
<a href="' . get_permalink() . '">
' . get_the_title() . ''. $the_date .'
</a>
</h4>'));
the_field('event_date')
の直後に入れたいget_the_title
。ただし、いつでも、コードの上または下に日付を出力するだけで、その周りに書式設定はまったくありません。