Question

I need help with wordpress shortcode. I have written shortcode function in functions.php in my theme files. Now I create page in wordpress administration and then I need to place this shortcode into special place in my theme but with content which I wrote in administration.

I hope that you understand what I mean.

Thank you for your help.

Was it helpful?

Solution

In your template code:

<?php echo do_shortcode('[your-shortcode]'); ?>

Replace [your-shortcode] with whatever your shortcode is, including parameters/attributes and/or closing tags if required.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top