Skip to content

Instantly share code, notes, and snippets.

@webmandesign
Created January 31, 2024 16:48
Show Gist options
  • Save webmandesign/46e5cea572b43a933f8bb1bded0066dc to your computer and use it in GitHub Desktop.
Save webmandesign/46e5cea572b43a933f8bb1bded0066dc to your computer and use it in GitHub Desktop.
Elementor template shortcode
<?php
add_shortcode(
'elementor-template',
function( array $atts ): string {
if (
empty( $atts['id'] )
|| ! is_callable( '\Elementor\Plugin::instance' )
) {
return '';
}
return \Elementor\Plugin::instance()->frontend->get_builder_content( absint( $atts['id'] ) );
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment