需要提取相应帖子的缩略图和日期。
试图删除所有帖子(甚至永久地从bin中删除)并重新创建。
我正在使用的代码有点笨拙,但是其中一个变量很重要:
//Code for displaying previous post link and image and date:
$date_previous = get_the_time('j F Y'); //To get the date of publication
$image_previous = wp_get_attachment_image_src( get_post_thumbnail_id(), 'single-post-thumbnail' ); //To get the post thumbnail
previous_post_link(
'%link',
$date_previous . '%title<div style="background: url('.$image_previous[0].');"></div>'
);
//Similarly for the next post...
$date_next = get_the_time('j F Y');
$image_next = wp_get_attachment_image_src( get_post_thumbnail_id(), 'single-post-thumbnail' );
next_post_link(
'%link',
$date_next.'%title<div style="background: url('.$image_next[0].');"></div>'
);
问题在于,虽然帖子的标题显示正确,但日期和特色图像仅显示当前帖子的标题,而没有显示相应(上一个/下一个)帖子的图像。
如何显示各个帖子的日期和特色图片?
感谢您抽出宝贵的时间。