我遇到了 ACF Gutenberg 块的一些问题。
我已经注册了一个 Gutenberg 块,用于名为“Portfolio”的自定义帖子类型。通过普通的 wp_query,我可以在主页上显示自定义帖子类型。但是我无法显示 ACF Gutenberg 块数据?
以下是我当前使用的代码。
<?php
// WP_Query arguments
$args = array(
'post_type' => array( 'portfolio' ),
'post_status' => array( 'publish' ),
'nopaging' => false,
'posts_per_page' => '5',
);
// The Query
$query_portfolio = new WP_Query( $args );
// The Loop
if ( $query_portfolio->have_posts() ) {
while ( $query_portfolio->have_posts() ) {
$query_portfolio->the_post();
}
// ACF group
$content = get_field('content');
?>
<!-- // ACF field from within group NOT SHOWING -->
<h1><?php echo $content['title']; ?></h1>
<h2><?php the_title(); ?></h2>
<?php
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();
?>
我卡在这一点上。不知何故,我无法让 Gutenberg Block 字段显示在主页上的查询中。
感谢所有帮助。
谢谢