How can you insert the Hanna Code into a theme template? I want to use this code to put a flash web banner on one of the StudioPress themes and it does not recognize it as code in the php template.
Thanks!
How can you insert the Hanna Code into a theme template? I want to use this code to put a flash web banner on one of the StudioPress themes and it does not recognize it as code in the php template.
Thanks!
Any help someone can give me on this would be great! The PHP does not recognize the code. I contacted StudioPress and they said that you would to create a template code. That way I can put the code in the templates code and use it on the header.
Hello
So you want to use this function in your theme template files. There is no function created for this purpose, but you can simple use below codes in your template file.
Just change $entry_name variable to your entry name used in the Hana Code settings page.
<?php
$entry_name="entry123";
if ($hana_code) { echo $hana_code->hana_code_return("[hana-code-insert name='$entry_name' /]"); }
?>
You must log in to post.