You need to use filters to hook into manage_posts_columns and manage_posts_custom_column which will let you add the table heading and dates. The filters are slightly special as you need to include the name of your custom post type
manage_{$post_type}_posts_columns
manage_{$post_type}_posts_custom_column
where {$post_type} in your case is conferences
// Add the table heading
function conf_columns_head($defaults) {
$defaults['conference_date'] = 'Date';
return $defaults;
}
// Add the conference date
function conf_columns_content($column_name, $post_ID) {
if ($column_name == 'featured_image') {
echo get_field('conference_date', $post_ID)
}
}
add_filter('manage_conferences_posts_columns', 'conf_columns_head');
add_action('manage_conferences_posts_custom_column', 'conf_columns_content', 10, 2);
Untested code, but that should get you started.
Related Posts:
- Media library – Limit images to custom post type
- List events by month
- Custom post types, disable fields
- Permalink URL connection between two custom types
- How to show link to product in custom fields?
- Looping through image object using ACF and CPT UI [SOLVED]
- How to load custom post type plugin after acf options page (or get settings from there another way)?
- Retrieve a post with its ACF repeater fields in wordpress
- Create a custom archive page for a custom post type in a plugin
- Prevent trash/delete action on specific post types
- How to add custom content template part for a custom post type on main query using a plugin
- echo value from ‘select’ field type into page template using cmb2?
- How often do you need to register_post_type?
- ACF Relationships in Custom Post Type Permalink
- Add Capabilities to Custom Post Type after it has been created [duplicate]
- Maintaining WP_Query Relation Among CPT, Custom Taxonomy, Permalinks- CPT UI
- Remove POST_TYPE from custom post type permalink
- Show ACF field from custom taxonomy and display on the single template
- Show custom field from custom taxanomy term on custom post type
- How to create an array for a CPT post ID to use in an IF/WHILE statement
- Shortcode insertion in tab
- Custom Post Types not showing, custom WP_Query
- Create 3 Level Relations with ACF and WordPress
- How to: Display ACF [fields] on Custom Post Types Utilising WordPress ‘Hooks’? [closed]
- Retrieve value of a category’s custom field
- Insert and then update post_type by wp_update_post
- Cluster CPT posts to users based on ACF value from their profile on dashboard
- ACF Values Don’t Show After Import Unless I Edit/Update Post
- Action or Filter Hook for a Custom Importer
- Stuck in Order by more then one
- How to set a CPT to have a page as a parent, then rewrite urls accordingly?
- Dynamic dropdown select values depending on other custom field value
- Post injections into Site Origins Page builder [closed]
- Query Custom Post Type Taxonomy term with multiple parameters
- Custom fields (wp_post_meta) vs Custom Table for large amount of data
- How to group posts and get a mixed posts and groups view?
- How can you use one database with multisite
- Integrate Custom Post Type Events into Calendar
- Query based on custom fields start and end date
- Redirect to another page using contact form 7? [closed]
- Why is my WP Query not returning first result’s post meta?
- How to get a custom type post data when it has a connection with another custom type post?
- How to create multiple editor?
- Custom post type, have only my meta boxes
- New “Custom Types” item in admin menu. Is this a plugin or a new wordpress feature?
- Can’t delete a custom post in front end with custom role
- Distribute Custom Post in different pages
- Add custom field to admin area witthout using a metabox
- How do I replace the post title with a custom field?
- How to export custom post type with ACF to individual file with automation?
- Can I assign a theme to a custom post type?
- Custom pages missing on “front page” setting
- Create Custom Post type that uses Page.php template
- Custom Post Type with Configurable Sidebar via ACF
- How can I modify a custom post type and custom page template for a child theme if all content seams to be handled by theme’s ‘native’ plugin?
- Accessing a protected property of a post
- Multiple archives to display parent and subcategories content
- Get A Custom Field From A Custom Taxonomy Of A Custom Post Type [closed]
- wordpress post_where set only for my costum post type
- Custom Sidebar in Editor (not Widget) for Custom Post Type in Genesis
- Limit search field to just search a custom post type with custom fields
- Show posts associated with ACF post object and custom post type
- Using ACF values in nested WP queries for CPT with date values in the past
- Create/populate Custom Posts ACF fields from external JSON file
- WordPress URL rewrites using Advanced Custom Field
- Custom Post Type and Structure Question
- Display Custom Field or Custom Taxonomy in front page /post/product
- Why do my custom post types stop displaying over time?
- How to access repeater field of a custom field?
- ACF Pro Accessing fields on a Custom Post Type
- Modify Publish Metabox location on CPT
- Set a template on a custom post in the plugin
- Some posts not displaying by taxonomy term
- Simple way to hide\show an announcement (just a div) on homepage?
- Restrict Custom Post Type to One Item
- Adding specific custom fields (images) to post excerpt
- filter using custom fields
- Display custom tax in “while” loop
- Link two different post using there post_id in post meta
- Custom post type that lets users create a set of posts?
- Fixed custom fields depending on posttype/category
- Grouping and paging CPT events by month with custom field date
- Remove custom post type generated by a plugin (The Events Calendar) [closed]
- Show custom taxonomy not in submenu
- Loop carousel slider in wordpress
- Custom post tag images not displaying with ACF
- Get post id of permalink for a specific custom post type?
- If you’re calling a dynamic css inline style does that div have to be in the loop?
- If i have custom post type with 5 custom fields do i have to create a new loop to reference each one?
- Configure which plugin custom post types get registered
- Copying custom field value in to title
- How to show animal lineage/pedigree in WordPress?
- Custom Post Type Loop breaking php
- Styling first post using Advanced Custom Fields
- ACF Relationship: Group posts by parent category term, then child [closed]
- ACF Field to set Publish Date – Post Duplication upon Update
- Getting ACF relationship field information
- How to get ‘Products’ on home page?
- Two custom post type relations
- selecting custom post types and taxonomies for hub page listing blocks