Skip to content

Instantly share code, notes, and snippets.

@obedparla
Created November 27, 2022 22:40
Show Gist options
  • Save obedparla/276c3de3047bbf0318aa4ee72912fa4f to your computer and use it in GitHub Desktop.
Save obedparla/276c3de3047bbf0318aa4ee72912fa4f to your computer and use it in GitHub Desktop.
Add HTML after Breakdance's styles
<?php
add_action('init', function() {
add_action(
'wp_head',
function () {
echo "<link rel='stylesheet' href='<url_to_stylesheet>'></link>";
},
1000000 + 1
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment