我正在使用以下代码尝试检索名为' image'的图像字段。来自使用高级自定义字段插件的分类术语。此代码基于ACF website here上的文档。
应该注意这个代码是在taxonomy.php模板中使用的,我无法指定特定的分类和/或术语,因为我需要代码来检测当前的分类和术语,基于用户的页面并点击进入。
非常感谢任何帮助!
<?php get_header(); ?>
<?php get_sidebar(); ?>
<section id="hero-image">
<div class="gradient-overlay">
<?php
// vars
$queried_object = get_queried_object();
$taxonomy = $queried_object->taxonomy;
$term_id = $queried_object->term_id;
// load thumbnail for this taxonomy term (term object)
$image = get_field('image', $queried_object);
// load thumbnail for this taxonomy term (term string)
$image = get_field('image', $taxonomy . '_' . $term_id);
?>
</div>
<div class="grid">
<header class="unit full-width">
<a href="<?php echo home_url(); ?>/" title="Kurdistan Memory Programme" class="logo"><?php bloginfo( 'name' ); ?></a>
</header>
<footer class="unit one-half">
<h1><?php single_cat_title(); ?></h1>
<h4 class="scroll-down">Scroll down to continue</h4>
</footer>
</div>
</section>
<?php get_footer(); ?>
答案 0 :(得分:11)
好的,所以你得到了该字段的值,你只需要设置它应该如何输出,如下所示:
$image = get_field('image', $taxonomy . '_' . $term_id);
echo '<img src="'.$image['sizes']['thumbnail'].'" alt="$image['alt']" />';
这假定您要使用缩略图图像大小。如果使用不同的尺寸,请将该文本更改为适当的图像尺寸。
如果要返回完整尺寸的图像,请使用以下代码:
$image = get_field('image', $taxonomy . '_' . $term_id);
echo '<img src="'.$image['url'].'" alt="$image['alt']" />';
答案 1 :(得分:0)
<?php
$terms = get_field('best_seller_laptops_pc_category');
if( $terms ): ?>
<?php foreach( $terms as $term ):
$thumb_id = get_woocommerce_term_meta( $term->term_id, 'thumbnail_id', true );
$term_img = wp_get_attachment_url( $thumb_id );
?>
<div class="col-lg-6">
<div class="addbox1">
<img alt="" src="<?php echo $term_img;?>">
<div class="contain">
<h3>
<?php echo esc_html( $term->name ); ?>
</h3>
<h4><?php echo esc_html( $term->description ); ?></h4>
<a href="<?php echo get_term_link( $term ); ?>">LEARN MORE</a>
<a href="<?php echo get_term_link( $term ); ?>" class="btn">buy now</a>
</div>
</div>
</div>
<?php endforeach; ?>
<?php endif; ?>
答案 2 :(得分:-1)
taxonomy.php是基于相同模型archives.php的自定义分类法的模板 在这种模板中,您应该使用wordpress循环
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
他们,你可以传入get_field,这样的帖子ID作为第二个参数:
$image = get_field('image', $post->ID);