为什么我的<! - ?php the_post_thumbnail(); ? - >不在我的wordpress页面上显示任何图像?

时间:2014-04-24 12:25:30

标签: wordpress-theming wordpress

我的代码是

<?php
// Template Name: homepage
get_header(); ?>
    <div id="content" class="full-width">

<?php 
    query_posts(array( 
        'post_type' => 'avada_portfolio',
        'showposts' => 2 
    ) );  
?>
<?php while (have_posts()) : the_post(); ?>
        <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>


    <img src=" <?php the_post_thumbnail('medium'); ?>">
        <p><?php echo get_the_excerpt(); ?></p>
 <?php
    endwhile; //resetting the page loop
    wp_reset_query(); //resetting the page query
    ?>


<h1 class="entry-title"><?php the_title(); ?></h1> <!-- Page Title -->
    <?php
    // TO SHOW THE PAGE CONTENTS
    while ( have_posts() ) : the_post(); ?> <!--Because the_content() works only inside a WP Loop -->
        <div class="entry-content-page">
            <?php the_content(); ?> <!-- Page Content -->
        </div><!-- .entry-content-page -->

    <?php
    endwhile; //resetting the page loop
    wp_reset_query(); //resetting the page query
    ?>

<?php get_footer(); ?>

我已将<?php add_theme_support( 'post-thumbnails' ); ?>添加到函数中,但它只是在我的主页上显示了损坏的图像:(

我的所有图片都上传到我的wordpress网站,并在自定义帖子上设置为精选图片!

感谢

3 个答案:

答案 0 :(得分:2)

the_post_thumbnail('medium')此函数将返回带有要素图像的img tag

所以你可以通过两种方式获得图像: -

<img src=" <?php echo wp_get_attachment_url(get_post_thumbnail_id( $post->ID ), 'medium' ); ?>">

这个函数: - <?php the_post_thumbnail('medium'); ?>

希望这会对你有所帮助。

答案 1 :(得分:0)

写“the_post_thumbnail('medium');”超出图片标记

像这样:

<?php while (have_posts()) : the_post(); ?>
    <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>

    <?php the_post_thumbnail('medium'); ?>
    <p><?php echo get_the_excerpt(); ?></p>

<?php
    endwhile; //resetting the page loop
    wp_reset_query(); //resetting the page query
?>

答案 2 :(得分:0)

<img src=" <?php the_post_thumbnail('medium'); ?>">

这在<img src="">中无效。对我来说这很有效:

<img src=" <?php echo wp_get_attachment_url(get_post_thumbnail_id( get_the_ID() ), 'thumbnail' ); ?>" class="media-object" style="width:73px; height:73px">