Taxonomy Term: use ACF image field for social image
-
I have assigned an ACF image field to the taxonomy event-category. When the taxonomy term is edited and saved, I would like to replace the ‘social image’ field from TSF with the ACF image field.
function filter_wp_insert_term_data( $data, $taxonomy, $args ) { $data['social_image_url'] = wp_get_attachment_url($data['featured_image']); return $data; }; add_filter( 'wp_insert_term_data', 'filter_wp_insert_term_data', 10, 3 );
I guess for terms TSF fields are not stored as separate meta values in db.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Taxonomy Term: use ACF image field for social image’ is closed to new replies.