ACF字段Wordpress-自定义简码问题

时间:2018-10-03 16:04:53

标签: wordpress advanced-custom-fields visual-composer

我有一个小问题 我编写了一个简单的简码函数,以在可视网格编辑器的网格中显示我的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”!

1 个答案:

答案 0 :(得分:0)

类似get_field的代码不知道从何处获取。尝试添加当前帖子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; 
}