Skip to content

Instantly share code, notes, and snippets.

@jkhaui
Created December 22, 2018 19:55
Show Gist options
  • Save jkhaui/7c654df6d09901d9c5018365b8e0fcf1 to your computer and use it in GitHub Desktop.
Save jkhaui/7c654df6d09901d9c5018365b8e0fcf1 to your computer and use it in GitHub Desktop.
$fields['seriesPart'] = [
'type' => \WPGraphQL\Types::int(),
'description' => __( 'The number of the post within its series.' ),
'resolve' => function( \WP_Post $post ) {
$series_number = get_post_meta( $post->ID, '_series_part', true );
return ! empty ( $series_number ) ? $series_mumber : null;
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment