I’m using a few plugins that have shortcodes … however, instead of creating a public page for the content, I’ve created some new pages within the admin using add_menu_page
and I need to know how to utilize do_shortcode()
within this context.
As it stands, all the function does it spit out the string. I’m assuming it’s because the shortcode API isn’t available within an admin page.
How do I get around this? There is no documentation that I can find that explains how to utilize shortcodes within the WP Admin… or if it’s even possible.
Specifically I’m trying to utilize WooCommerce shortcodes within the WP Admin. I hate the fact that plugins don’t utilize the WP Backend for account/user management.
Instead of calling
do_shortcode()
just call the function associated with the shortcode.Example
There is a shortcode named
[example]
and a function registered as shortcode handler:In your admin page you just call the function:
Output:
This works!
.Faster and more reliable than
do_shortcode()
.It seems the shortcode API is available in the admin, but its output will depend on the shortcode tag in question.
The built-in
[caption]
works as expected, whereas[embed]
doesn’t (this is due to how the embed API “lazy-loads” it’s shortcode, and depends onthe_content
filter to run, so technically not the shortcode API’s fault).Conclusion: It’s entirely dependent on how & when the tag is registered, and what it does/assumes when executed.
@dcolumbus Which tag are we talking about in your case?