ACF Field Wordpress - 自定义简码问题

ACF Field Wordpress - Custom Shortcode Problems

我有个小问题 我写了一个简单的短代码函数来在可视化网格编辑器的网格中显示我的 acf 值,这是我简单的自定义短代码

function my_module_add_grid_shortcodes( $shortcodes ) {
    $shortcodes['vc_say_hello'] = array(
     'name' => __( 'Say Hello', 'my-text-domain' ),
     'base' => 'vc_say_hello',
     'category' => __( 'Content', 'my-text-domain' ),
     'description' => __( 'Just outputs Hello World', 'my-text-domain' ),
     'post_type' => Vc_Grid_Item_Editor::postType(),
  );
   return $shortcodes;
}

    add_shortcode( 'vc_say_hello', 'vc_say_hello_render' );
    function vc_say_hello_render() {
             if( get_field('item')  ): 
                 the_field('item');  
                else:
                echo "<h2>ITEM LOCKED</h2>"; 
             endif; 

    }

当我在构建器中调用短代码时,显示 "ITEM Locked",即使元素的值设置在 post 中!

看起来 get_field 不知道从哪里获取简码。尝试添加当前 post id 作为第二个参数

add_shortcode( 'vc_say_hello', 'vc_say_hello_render' );
function vc_say_hello_render() {
    $id = get_the_ID();
    if( get_field('item', $id)  ): 
        the_field('item', $id);  
    else:
        echo "<h2>ITEM LOCKED</h2>"; 
    endif; 
}