我正在使用高级自定义字段,并选择了“页面选择器”,允许我选择页面。
在前端,我能够对其进行编码,以便我选择的页面位于带有标题和页面链接的主页上,但我也试图在该页面中浏览自定义字段
这是我到目前为止的代码;
<?php if( have_rows('page_selector') ):
$i=1;
$count = (count($my_fields['value']));
?>
<?php while( have_rows('page_selector') ): the_row();
// vars
$page = get_sub_field('page');
?>
<div class="lg-col-6 md-col-6">
<div class="sub_service">
<?php
// vars
$post_id = get_sub_field('page', false, false);
// check
if( $post_id ): ?>
<a href="<?php echo get_the_permalink($post_id); ?>"><h2><?php echo get_the_title($post_id); ?></h2></a>
<?php endif; ?>
//This is the custom field
<?php get_sub_field('description'); ?>
</div>
</div>
<?php
$i++;
endwhile; ?>
<?php endif; ?>
<?php wp_reset_query(); ?>
如果没有意义,请提前道歉,如果令人困惑,会尝试进一步解释。
由于
答案 0 :(得分:0)
你发布了这个问题,然后答案就出现了......
<?php the_field('description', $post_id); ?>