add_action( 'wp_footer', 'forminator_preload', 20 ); function forminator_preload() { global $post; if ( ! $post instanceof…
Site URL Shortcode
//===================================================
//SHORTCODE: SITE URL
//===================================================
add_shortcode( 'site_url', function( $atts = null, $content = null ) {
return site_url();
} );
