0

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

4

2 回答 2

0

您应该返回值:

get_the_field( 'event_date' )

于 2013-06-07T00:59:58.643 回答
0

根据您的 css,您会遇到很多问题。请记住,标题是块级元素(它们占据一整行),锚也可以。我将绘制出我正在尝试创建的 html 并确定需要内联的内容并整理父/子关系。我不确定这是 Wordpress 输出的问题。

发布正在输出的 html 和相关的 css。

于 2013-06-06T16:40:00.720 回答