Wordpress Admin Panel Code Input
Posted
by Wes
on Stack Overflow
See other posts from Stack Overflow
or by Wes
Published on 2010-05-31T14:28:52Z
Indexed on
2010/05/31
14:33 UTC
Read the original article
Hit count: 189
I've got a wordpress admin panel for one of my themes and one of the boxes has an input for some code to drive google adsense. when I put the code into the box and call it with my php tags the code comes out like this:
<script type="\"text/javascript\""><!--
google_ad_client = \"pub-9295546347478163\";
/* Leaderboard 5/17/2010 */
google_ad_slot = \"7593465074\";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="\"text/javascript\"" src="%5C%22http://pagead2.googlesyndication.com/pagead/show_ads.js%5C%22">
</script>
Which I assume is a feature to stop SQL injections. How can I call pure code form a box? This is how I currently have that textbox setup.
array( "name" => "Code for Top ad",
"desc" => "Enter the HTML that will drive the banner ad for the page header",
"id" => $shortname."_headerAd",
"type" => "textarea"),
and then echo it out with this:
<?php echo get_option('lifestyle_headerAd'); ?>
© Stack Overflow or respective owner