我創建了一個自定義字段與高級自定義字段插件稱爲'colaboradores'字段徽標(圖像),direccion(字符串)和mapa(圖像);WordPress自定義字段外部HTML標籤
在archive-colaboradores.php,我稱之爲WP_Quer。總之,代碼爲:
<?php
$args = array(
'post_type' => 'colaboradores',
'pagination' => false
); ?>
<?php $the_query = new WP_Query($args); ?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('content', 'colaboradores'); ?>
<?php endwhile; // end of the loop. ?>
所以在內容colaboradores.php我告訴我的自定義字段與the_field():
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<?php $image = get_field('logo'); ?>
<?php echo '<img src="' . $image['url'] . '" >'; ?>
<?php echo '<p>' . the_field('direccion') . '</p>'; ?>
<?php $image = get_field('mapa'); ?>
<?php echo '<img src="' . $image['url'] . '" >'; ?>
</article><!-- #post-## -->
一切都很好,除了direccion,這始終是外
標籤與谷歌瀏覽器檢查:
我已經刪除了之前的所有代碼。 the_field('direccion')。 '
'; ?>但問題仍然存在。你知道它爲什麼發作嗎?謝謝。
感謝您的回答!我發現問題:* the_field()*包括回聲:[ACF - the_field](http://www.advancedcustomfields.com/resources/the_field/)[/ link],最終的代碼是:'
' – Joss