-
-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Hello,
The plugin is excellent. Could you consider adding a filter for the “image” meta name instead of hard-coding it?
og/includes/iworks/class-iworks-opengraph.php
Line 802 in ec9cdbf
| $image_id = intval( get_term_meta( $obj->term_id, 'image', true ) ); |
It would be great if it had a filter, perhaps something like this
$image_field = apply_filters( 'og_term_thumbnail_meta', 'image', $obj );
$image_id = intval( get_term_meta( $obj->term_id, $image_field, true ) );
Thanks.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers