Support

Account

Home Forums Backend Issues (wp-admin) Get content for Custom Columns? Reply To: Get content for Custom Columns?

  • I don’t believe get_field() is ready in that particular hook. You’ll need to use get_post_meta() to retrieve the value instead:

    
    echo get_post_meta( $post_ID, 'project_navigation_name', true );