Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rajeshsingh520/b6225b85a8dd91ae722a4b34d33a6c75 to your computer and use it in GitHub Desktop.
Save rajeshsingh520/b6225b85a8dd91ae722a4b34d33a6c75 to your computer and use it in GitHub Desktop.
add_shortcode('pisol_generate_iframe', function ($atts) {
$main_domain = 'https://checkout.billsby.com/subscription?data-billsby-company=alldata';
$params = $_GET;
$iframe_url = add_query_arg($params, $main_domain);
return '<iframe src="' . esc_url($iframe_url) . '" width="100%" height="600px" frameborder="0"></iframe>';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment