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 to the public; 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. For example:
<?php require_once('wp-load.php'); ?> <html> <head> <title> User Registration Request </title> </head> <body> <?php echo do_shortcode( '[wppb-register]' ); ?> </body> </html>
Thanks
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘When do shortcodes get loaded?’ is closed to new replies.