I need a bit of code decoded because someone decided to encode footer.php Pretty lame. looks like "base64" code. I have seen people able to decode this type of code on here, I cant find any place online that does it correctly.....
http://pastebin.com/i88erWxN
if anyone could help me out, id appreciate.
-Brian
Links removed . Don't use bad themes!
</div>
<div id="Footer">
<span class="FooterText">
<?php
include (get_absolute_url(get_bloginfo('stylesheet_directory').'/footer_text.php'));
include (get_absolute_url(get_bloginfo('stylesheet_directory').'/footer_links.php'));
?>
<br/><br/>
<?php
//$footerlinks = get_pages('hierarchical=0&meta_key=article_type&meta_value=footerlinks');
$i = 1;
foreach($links_name as $key=>$value) {
echo '<a class=WebsiteFooterLink href="'.$links_link[$key].'" target="'.$links_target[$key].'">'.$value.'</a>';
if ($i < count($links_name)) {
echo ' | ';
}
$i++;
}
echo '<br/><br/>'.nl2br($footer_text);
?> <br/>
THEME: <a href="http://www.xxxxxx.com/">WordPress Themes</a> | Sponsored By: <a href="http://www.xxxxxx.com.com">Dedicated Server</a> | <a href="http://www.xxxxxxxxxx.com">Credit Cards</a>
<div class="Cleaner"></div>
<span class=SmallLogo><img src="<?php bloginfo('stylesheet_directory')?>/images/logos/<?php get_headerinfo('smalllogo')?>" border="0"></span>
</span>
</div>
</div>
</body>
</html>
Thanks c3m. This was actually a themeforest theme. kinda lame they did that to it. Thanks again man.