18 lines
542 B
PHP
18 lines
542 B
PHP
<?php
|
|
|
|
// Expose 'bg_pos_desktop' post meta on MediaItem type in WPGraphQL
|
|
add_action( 'graphql_register_types', 'leblanc_graphql_register_media_focus_point' );
|
|
function leblanc_graphql_register_media_focus_point() {
|
|
register_graphql_field(
|
|
'MediaItem',
|
|
'objectPosition',
|
|
array(
|
|
'type' => 'String',
|
|
'description' => 'CSS object-position value from Media Focus Point plugin',
|
|
'resolve' => static function ( $media_item ) {
|
|
return get_post_meta( $media_item->databaseId, 'bg_pos_desktop', true );
|
|
},
|
|
)
|
|
);
|
|
}
|