[ad_1]
This is something that you should do from within your theme. The exact way to do this is fully dependent on your theme, so I cannot really help with this other than providing you with the following information.
- your theme will have a file called
single.php, this is the template file for posts that you should edit. Some themes may use “template parts” which you will need to figure out on your own. - The function that loads the content of your posts is called
the_contentso look for that. It is after this that you will want to run the shortcode - The php function to run shortcodes is called
do_shortcode. An example would bedo_shortcode('[HDquiz quiz = "999"]');
