此代码必须用于以 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
. 但是,每当我这样做时,它只会在代码上方或下方输出日期,绝对没有任何格式。