When do shortcodes get loaded?
-
Hi
After which WP hook do the shortcodes for this plugin get loaded?
Contact form short codes work after
<?php require_once('wp-load.php'); ?>
is loaded on a page.My website is completely locked outside users; and I’ve used contact form 7 to capture user registration requests, but I want a more fluent system. I was hoping that I could include your shortcode in a custom page outside of WordPress that will allow users to register with more detail. Example of what I want to do;
<?php require_once('wp-load.php'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>User Registration Request</title> </head> <body> <?php echo do_shortcode( '[wppb-register]' ); ?> </body> </html>
Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘When do shortcodes get loaded?’ is closed to new replies.