标题、内容、专题图片

时间:2018-03-11 作者:eileen

在我的推荐信部分,没有显示标题和内容。功能图像显示时,每个图像都附加了额外的图像。我不熟悉php和word press。使用WP 4.9(以下是我的代码)

<div class="col-sm-8 col-sm-offset-2">
    <h2>What People Are Saying About Brad</h2>
    <?php $loop = new WP_Query( array( \'post_type\' => \'testimonials\', \'orderby\' => \'post_id\', \'order\' => \'ASC\' ) ); ?>  

    <?php while( $loop->have_posts() ) : $loop->the_post(); ?>

<div class="row testimonial">
    <div class="col-sm-4">

    <?php if ( has_post_thumbnail() ) { 
               the_post_thumbnail( array() );
           }    
        ?>

        <img src="<?php bloginfo(\'stylesheet_directory\'); ?>/assets/img/brennan.jpg" alt="Brennan">
    </div><!-- end col -->
    <div class="col-sm-8">                          

        <blockquote>
            <?php the_content; ?>
            <cite>&mdash;<?php the_title; ?></cite>
        </blockquote>

    </div><!-- end col -->

</div><!-- row -->                  
<?php endwhile; ?>

1 个回复
SO网友:Jignesh Patel

您的代码出现了一些小错误。您不能这样写“the\\u content”。这是一个函数。缺少括号。

您的代码:

<?php the_title; ?>
<?php the_content; ?>
替换为:

<?php the_content(); ?>
<?php the_title(); ?>
对于图像“the\\u post\\u thumbnail()”,请删除参数数组。并查看更多详细信息:https://developer.wordpress.org/reference/functions/the_post_thumbnail/

结束

相关推荐

从图像路径中删除‘wp-Content/Themes/Themename/’

我目前正在将一个基于其他CMS的旧网站移动到一个新服务器上,使用WordPress。然而,这个网站在Google上排名很好,我必须保留所有的链接结构,包括来自图片的链接结构。因此,在旧CMS中,图像链接如下:http://www.domain-name.de/images/image1.jpg 现在,他们是这样的:http://www.domain-name.de/wp-content/themes/theme-name/images/image1.jpg 但它们必须与第一个示例中的一