Skip to content

Instantly share code, notes, and snippets.

@Balachandark
Created October 24, 2019 11:29
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 Balachandark/3bfd32e6fa4a902a69653c6e944b2a7b to your computer and use it in GitHub Desktop.
Save Balachandark/3bfd32e6fa4a902a69653c6e944b2a7b to your computer and use it in GitHub Desktop.
Add Elementor CSS file in Head
add_action( 'wp_enqueue_scripts', function() {
if ( ! class_exists( 'Elementor\Core\Files\CSS\Post' ) ) {
return;
}
// Add your header page id here.
$header_page_id = 3499;
$css_file = new Elementor\Core\Files\CSS\Post( $header_page_id );
$css_file->enqueue();
}, 500 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment