Skip to content

Instantly share code, notes, and snippets.

@ashtonlance
Created March 10, 2022 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashtonlance/b826c4754f801a57c391903c8ac1e781 to your computer and use it in GitHub Desktop.
Save ashtonlance/b826c4754f801a57c391903c8ac1e781 to your computer and use it in GitHub Desktop.
Get Elementor custom css
<?php
add_action( 'graphql_register_types', function() {
register_graphql_field( 'Page', 'customCSS', [
'type' => 'String',
'description' => __( 'Custom CSS from Editor', 'wp-graphql' ),
'resolve' => function() {
// call your function which return your custom css
return $this->addPageCustomCssToGraphql();
}
] );
} );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment