mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
245 B
Text
10 lines
245 B
Text
add_action( 'wp_enqueue_scripts', function() {
|
|
if ( ! class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
|
|
return;
|
|
}
|
|
|
|
$template_id = 123456;
|
|
|
|
$css_file = new \Elementor\Core\Files\CSS\Post( $template_id );
|
|
$css_file->enqueue();
|
|
}, 500 );
|