Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active October 8, 2019 09:20
Show Gist options
  • Save vanaf1979/c8c38d380b92846810324101f03ee775 to your computer and use it in GitHub Desktop.
Save vanaf1979/c8c38d380b92846810324101f03ee775 to your computer and use it in GitHub Desktop.
Gist for my article Building a Gutenberg sidebar plugin Part 5: Outputting data https://vanaf1979.nl/building-a-gutenberg-sidebar-plugin-part-5-outputting-data/
<?php
public function register() : void {
...
\add_action(
'after_setup_theme',
array( $this , 'add_title_theme_support' ),
1
);
\add_action(
'pre_get_document_title',
array( $this , 'add_title_to_head' ),
999
);
\add_action(
'wp_head',
array( $this , 'add_metatags_to_head' ),
1,
1
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment