gpt4 book ai didi

php - the_post_thumbnail_url() 导致缩略图支持处于事件状态的 fatal error

转载 作者:搜寻专家 更新时间:2023-10-31 21:03:23 24 4
gpt4 key购买 nike

我正在研究二十三岁的 child 主题。Twentythirteen 支持缩略图:

add_theme_support( 'post-thumbnails' );

但是当我使用时:

the_post_thumbnail_url()

我遇到一个 fatal error 。所有谷歌答案都说 add_theme_support( 'post-thumbnails' ) 必须在父主题 functions.php 中,好吧,在这种情况下它就在那里,但我还是遇到了 fatal error 。

我什至在子 functions.php 中复制了支持语句(以防万一),但仍然遇到麻烦。

代码:

        query_posts('category_name=curso&showposts=3');
?>
<?php if (have_posts()) : ?>
<h2>Cursos</h2>
<?php while ( have_posts() ) : the_post(); ?>
<div class = "ficha curso">
<?php
if ( has_post_thumbnail() && ! post_password_required() ) : ?>
<div class="ficha-thumbnail" style = "background: url('<?php the_post_thumbnail_url('large'); ?>') no-repeat; background-size: 300px auto"></div>
<?php endif; ?>

<h3 class="ficha-title"><?php the_title(); ?></h3>


<div class="ficha-resumen">
<?php the_excerpt(); ?>
</div><!-- .entry-content -->
</div>
<?php endwhile; endif;

最佳答案

试试这个逻辑,如果它对你有用的话:

        <?php
if ( has_post_thumbnail() && ! post_password_required() ) :
$imgURL = wp_get_attachment_url( get_post_thumbnail_id(get_the_ID()) );
?>
<div class="ficha-thumbnail" style = "background: url('<?php echo $imgURL; ?>') no-repeat; background-size: 300px auto"></div>
<?php endif; ?>

希望这对您有用...;-)

关于php - the_post_thumbnail_url() 导致缩略图支持处于事件状态的 fatal error ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37145750/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com