此代码必须用于以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
。但是,每当我这样做时,它只会在代码的上方或下方输出日期,并且绝对没有格式化。
答案 0 :(得分:0)
根据你的css,你在这里遇到了很多问题。记住标题是块级元素(它们占据整行),锚也可以。我会绘制出我想要创建的html,并确定需要内联的内容并整理父/子关系。我不确定这是Wordpress输出的问题。
发布正在输出的html和相关的CSS。
答案 1 :(得分:0)
您应该返回值:
get_the_field( 'event_date' )