jaressloo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_rss2feedPosting the code again. Use this code instead of the one I posted before. It takes care of the copyright symbol too.
<!-- begin footer --> <div id="footer"> © <?php echo date("Y") ?> <a href="<?php echo get_settings('home'); ?>/"> <?php bloginfo('name');?></a>. <?php if(is_home()) : ?><?php endif; ?> <a href="<?php bloginfo('rss_url'); ?>">Entries (RSS)</a> and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a> <div id="credit"></div> </div> <?php wp_footer(); ?> </div> </body></html>Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_rss2feedThis is not a hack. This is just a mess up in the code.
For this particular template, there is a pretty easy fix.
The code in the footer.php file for this theme is encrypted. The decrypted version is this:
<!– begin footer –>
<div id=”footer”> © <?php echo date(“Y”) ?> /”>
<?php bloginfo(‘name’);?>. <?php if(is_home()) : ?><?php endif; ?>
“>Entries (RSS) and “>Comments (RSS)<div id=”credit”></div>
</div>
<?php wp_footer(); ?>
</div>
</body></html>All you have to do is open the footer.php file in your theme directory and then replace everything in that file with the code I provided above and everything should work beautifully!