Can someone please tell me where the footer is for the theme WordPraized 1.1 by Praized Media. I want to install a link in the footer instead of making an entire page. I appreciate it. Thank you.
Peter
Can someone please tell me where the footer is for the theme WordPraized 1.1 by Praized Media. I want to install a link in the footer instead of making an entire page. I appreciate it. Thank you.
Peter
Try looking in the theme's footer.php template file.
Hi, ok I found the footer.php under the editor button under appearances. I want to add the FTC Disclosure as a link to my footer. How do I do this? This is what shows up in the footer now.
<div class="bottom-rounded-corners"></div>
</div>
<!-- [/#center] -->
<hr />
<div id="footer">
<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
<p>
<?php printf(__('%1$s is proudly powered by %2$s', 'wordpraized'), get_bloginfo('name'),
'WordPress'); ?>
<?php printf(__('%1$s and %2$s.', 'wordpraized'), '' . __('Entries (RSS)', 'wordpraized') . '', '' . __('Comments (RSS)', 'wordpraized') . ''); ?>
<!-- <?php printf(__('%d queries. %s seconds.', 'wordpraized'), get_num_queries(), timer_stop(0, 3)); ?> -->
</p>
</div>
</div>
<?php /* "All your base are belong to us!" */ ?>
<?php wp_footer(); ?>
<?php if (stristr($_SERVER['HTTP_USER_AGENT'], 'iPhone')): ?>
<script type="text/javascript">
// iPhone orientaton switcher (see theme's iphone.css)
function orient() {
switch(window.orientation){
case 0:
document.body.setAttribute("class", 'portrait');
break;
case -90:
document.body.setAttribute("class", 'landscape');
break;
case 90:
document.body.setAttribute("class", 'landscape');
break;
}
}
window.onload = orient();
</script>
<?php endif ?>
</body>
</html>
This topic has been closed to new replies.